Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error installing provider "aws": chmod .terraform/plugins/darwin_amd64/terraform-provider-aws_v2.52.0_x4: no such file or directory. #1087

Closed
zelig81 opened this issue Mar 9, 2020 · 11 comments · Fixed by #2698
Labels
bug Something isn't working p:needs triage Needs to be processed by maintainer and issue type / priority added

Comments

@zelig81
Copy link

zelig81 commented Mar 9, 2020

I've got the following error when tried to launch terragrunt plan-all --terragrunt-source-update --terragrunt-non-interactive --terragrunt-source /path/to/the/sources on multiple modules at the same time:
Error installing provider "aws": chmod .terraform/plugins/darwin_amd64/terraform-provider-aws_v2.52.0_x4: no such file or directory.

The mentioned modules do have separated set of dependencies

Terraform v0.12.23
terragrunt version v0.23.0

@yorinasub17 yorinasub17 added bug Something isn't working needs investigation labels Mar 9, 2020
@yorinasub17
Copy link
Contributor

My best guess as to what is happening is a conflict on the paths, but it is a bit hard to investigate with the current info.

Are you able to share the entire terragrunt log output from the run with us? Make sure to sanitize anything sensitive.

Alternatively, can you share the directory structure along with some information about the code (how many dependencies, if you are deploying the same module multiple times, etc) so we can get a sense as to how many modules are being run?

@zelig81
Copy link
Author

zelig81 commented Mar 10, 2020

The issue happens intermittently (I'm not providing the successful running logs as not relevant)

The command that I launch in every module: terragrunt plan-all --terragrunt-source-update --terragrunt-non-interactive --terragrunt-source ~/code/.infrastructure/tf-modules

The issue happens no matter which module I try to deploy (but I remember only failure of only aws provider installation - not sure if there were other providers as well).

tree of modules (terragrunt)

├── development
│   ├── infrastructure
│   │   └── ssm
│   │       ├── rds-connection-string-experiment
│   │       │   └── terragrunt.hcl
│   │       ├── rds-connection-string-local
│   │       │   └── terragrunt.hcl
│   │       ├── rds-user-experiment-writer
│   │       │   └── terragrunt.hcl
│   │       └── rds-user-local
│   │           └── terragrunt.hcl
│   └── environment.tfvars.json
├── integration
│   ├── applications
│   │   ├── debezium
│   │   │   └── ssm
│   │   │       └── rds-user-online-debezium
│   │   │           └── terragrunt.hcl
│   │   └── online-app
│   │       ├── lambda
│   │       │   └── lambda-cognito-event-messages
│   │       │       └── terragrunt.hcl
│   │       └── ssm
│   │           └── rds-user-online-app
│   │               └── terragrunt.hcl
│   ├── infrastructure
│   │   ├── acm
│   │   │   └── certificate
│   │   │       └── terragrunt.hcl
│   │   ├── cloudfront-s3-bucket
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── cognito
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── es
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── rds
│   │   │   └── online
│   │   │       └── terragrunt.hcl
│   │   ├── route53
│   │   │   ├── private-hosted-zone
│   │   │   │   └── terragrunt.hcl
│   │   │   └── public-hosted-zone
│   │   │       └── terragrunt.hcl
│   │   ├── sg
│   │   │   ├── sg-all-access-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-db-access-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-https-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   └── sg-vpc-traffic
│   │   │       └── terragrunt.hcl
│   │   ├── ssm
│   │   │   ├── es-connection-string-online-endpoint
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-online
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-online-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   └── rds-user-online-root
│   │   │       └── terragrunt.hcl
│   │   └── vpc
│   │       └── terragrunt.hcl
│   └── environment.tfvars.json
├── production
│   ├── applications
│   │   ├── analysts
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-reader
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-writer
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-reporter
│   │   │           └── terragrunt.hcl
│   │   ├── backoffice
│   │   │   └── ssm
│   │   │       └── rds-user-domain-knowledge-backoffice
│   │   │           └── terragrunt.hcl
│   │   ├── cdc-sync-approve
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-cdc-sync-approve
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-cdc-sync-approve
│   │   │           └── terragrunt.hcl
│   │   ├── debezium
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-debezium
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-replicator
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-domain-knowledge-debezium
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-domain-knowledge-replicator
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-debezium
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-replicator
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-reports-debezium
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-replicator
│   │   │           └── terragrunt.hcl
│   │   ├── etl
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-etl
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-etl
│   │   │           └── terragrunt.hcl
│   │   ├── event-processor
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-event-processor
│   │   │           └── terragrunt.hcl
│   │   ├── facebook-data-fetcher
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-facebook-data-fetcher
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-facebook-data-fetcher
│   │   │           └── terragrunt.hcl
│   │   ├── jupyter-runner
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-jupyter-runner
│   │   │           └── terragrunt.hcl
│   │   ├── liquibase
│   │   │   └── ssm
│   │   │       ├── rds-user-online-liquibase
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-liquibase
│   │   │           └── terragrunt.hcl
│   │   ├── mail-collector
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-mail-collector
│   │   │           └── terragrunt.hcl
│   │   ├── marketing-migrator
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-marketing-migrator
│   │   │           └── terragrunt.hcl
│   │   ├── monitoring
│   │   │   └── ssm
│   │   │       ├── rds-user-monitoring-grafana
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-monitoring-prometheus
│   │   │           └── terragrunt.hcl
│   │   ├── online-app
│   │   │   ├── lambda
│   │   │   │   └── lambda-cognito-event-messages
│   │   │   │       └── terragrunt.hcl
│   │   │   └── ssm
│   │   │       ├── rds-user-online-analyst
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-app
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-enrichment
│   │   │           └── terragrunt.hcl
│   │   ├── personal
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-daniela
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-gabis
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-guys
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-tomers
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-tzahif
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-tomers
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-gabis
│   │   │           └── terragrunt.hcl
│   │   ├── tableau
│   │   │   └── ssm
│   │   │       ├── ec2-user-tableau
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-tableau
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-tableau
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-tableau
│   │   │           └── terragrunt.hcl
│   │   └── temp-online-migrator
│   │       └── ssm
│   │           └── rds-user-online-temp-online-migrator
│   │               └── terragrunt.hcl
│   ├── infrastructure
│   │   ├── acm
│   │   │   └── terragrunt.hcl
│   │   ├── cloudfront-s3-bucket
│   │   │   ├── media
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── online-app
│   │   │   │   └── terragrunt.hcl
│   │   │   └── storybook
│   │   │       └── terragrunt.hcl
│   │   ├── cognito
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── msk
│   │   │   ├── collection
│   │   │   │   └── terragrunt.hcl
│   │   │   └── online
│   │   │       └── terragrunt.hcl
│   │   ├── rds
│   │   │   ├── analytics
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── analytics-staging
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── online
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── reports
│   │   │   │   └── terragrunt.hcl
│   │   │   └── reports-staging
│   │   │       └── terragrunt.hcl
│   │   ├── s3
│   │   │   ├── novarize-age-results-production
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── novarize-algo
│   │   │   │   └── terragrunt.hcl
│   │   │   └── novarize-data
│   │   │       └── terragrunt.hcl
│   │   ├── sg
│   │   │   ├── sg-db-access-from-public
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-db-access-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-https-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-ssh-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-tableau-access-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-vpc-traffic
│   │   │   │   └── terragrunt.hcl
│   │   │   └── sg-web-traffic
│   │   │       └── terragrunt.hcl
│   │   ├── sns
│   │   │   ├── topic-infrastructure-alarms-application
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── topic-infrastructure-alarms-devops
│   │   │   │   └── terragrunt.hcl
│   │   │   └── topic-infrastructure-alarms-platform
│   │   │       └── terragrunt.hcl
│   │   ├── ssm
│   │   │   ├── es-connection-string-online-endpoint
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── kafka-connection-string-collection-brokers
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── kafka-connection-string-online-brokers
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-analytics
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-analytics-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-domain-knowledge
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-online
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-online-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-reports
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-reports-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-user-analytics-root
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-user-online-root
│   │   │   │   └── terragrunt.hcl
│   │   │   └── rds-user-reports-root
│   │   │       └── terragrunt.hcl
│   │   └── vpc
│   │       └── terragrunt.hcl
│   └── environment.tfvars.json
├── shared
│   ├── infrastructure
│   │   ├── route53
│   │   │   └── public-hosted-zone
│   │   │       └── terragrunt.hcl
│   │   ├── s3
│   │   │   └── helm-charts-repo
│   │   │       └── terragrunt.hcl
│   │   ├── sns
│   │   │   └── topic-infrastructure-alarms-devops-non-urgent
│   │   │       └── terragrunt.hcl
│   │   ├── tgw
│   │   │   └── terragrunt.hcl
│   │   └── waf
│   │       └── access-from-office-only
│   │           └── terragrunt.hcl
│   └── environment.tfvars.json
├── staging
│   ├── applications
│   │   ├── analysts
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-reader
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-writer
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-reporter
│   │   │           └── terragrunt.hcl
│   │   ├── cdc-sync-approve
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-cdc-sync-approve
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-cdc-sync-approve
│   │   │           └── terragrunt.hcl
│   │   ├── debezium
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-debezium
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-analytics-replicator
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-debezium
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-replicator
│   │   │           └── terragrunt.hcl
│   │   ├── etl
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-etl
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-reports-etl
│   │   │           └── terragrunt.hcl
│   │   ├── event-processor
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-event-processor
│   │   │           └── terragrunt.hcl
│   │   ├── industry-scraper
│   │   │   └── ssm
│   │   │       └── rds-user-online-industry-scraper
│   │   │           └── terragrunt.hcl
│   │   ├── liquibase
│   │   │   └── ssm
│   │   │       └── rds-user-online-liquibase
│   │   │           └── terragrunt.hcl
│   │   ├── mail-collector
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-mail-collector
│   │   │           └── terragrunt.hcl
│   │   ├── marketing-migrator
│   │   │   └── ssm
│   │   │       └── rds-user-analytics-marketing-migrator
│   │   │           └── terragrunt.hcl
│   │   ├── online-app
│   │   │   ├── api
│   │   │   │   └── api-online-frontend-server
│   │   │   │       └── terragrunt.hcl
│   │   │   ├── lambda
│   │   │   │   ├── lambda-cognito-event-messages
│   │   │   │   │   └── terragrunt.hcl
│   │   │   │   └── lambda-online-frontend-server
│   │   │   │       └── terragrunt.hcl
│   │   │   └── ssm
│   │   │       ├── rds-user-online-app
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-enrichment
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-industry-research
│   │   │           └── terragrunt.hcl
│   │   ├── personal
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-tzahif
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-daniela
│   │   │       │   └── terragrunt.hcl
│   │   │       ├── rds-user-online-israele
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-product-user
│   │   │           └── terragrunt.hcl
│   │   ├── tableau
│   │   │   └── ssm
│   │   │       ├── rds-user-analytics-tableau
│   │   │       │   └── terragrunt.hcl
│   │   │       └── rds-user-online-tableau
│   │   │           └── terragrunt.hcl
│   │   └── temp-online-migrator
│   │       └── ssm
│   │           └── rds-user-online-temp-online-migrator
│   │               └── terragrunt.hcl
│   ├── infrastructure
│   │   ├── acm
│   │   │   └── certificate
│   │   │       └── terragrunt.hcl
│   │   ├── cloudfront-s3-bucket
│   │   │   ├── media
│   │   │   │   └── terragrunt.hcl
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── cognito
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── es
│   │   │   └── online-app
│   │   │       └── terragrunt.hcl
│   │   ├── rds
│   │   │   └── online
│   │   │       └── terragrunt.hcl
│   │   ├── route53
│   │   │   ├── private-hosted-zone
│   │   │   │   └── terragrunt.hcl
│   │   │   └── public-hosted-zone
│   │   │       └── terragrunt.hcl
│   │   ├── s3
│   │   │   └── frontend-servers
│   │   │       └── terragrunt.hcl
│   │   ├── sg
│   │   │   ├── sg-db-access-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-https-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-ssh-from-vpn
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── sg-vpc-traffic
│   │   │   │   └── terragrunt.hcl
│   │   │   └── sg-web-traffic
│   │   │       └── terragrunt.hcl
│   │   ├── ssm
│   │   │   ├── es-connection-string-online-endpoint
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-analytics
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-analytics-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-online
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-online-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-reports
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-connection-string-reports-reader
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-user-analytics-root
│   │   │   │   └── terragrunt.hcl
│   │   │   ├── rds-user-online-root
│   │   │   │   └── terragrunt.hcl
│   │   │   └── rds-user-reports-root
│   │   │       └── terragrunt.hcl
│   │   └── vpc
│   │       └── terragrunt.hcl
│   └── environment.tfvars.json
├── README.md
├── commons.tfvars.json
├── terraform.tfstate
└── terragrunt.hcl

272 directories, 172 files

Both modules below had been launched at the same time:

log of failed thread of run from path production/infrastructure/rds/online

terragrunt plan-all --terragrunt-source-update --terragrunt-non-interactive --terragrunt-source ~/code/.infrastructure/tf-modules
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online.
[terragrunt] 2020/03/10 08:52:53 Stack at /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online:
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform, /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc (excluded: false, dependencies: [])
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait for 8 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-platform of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 7 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-application of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 6 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sns/topic-infrastructure-alarms-devops of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 5 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/ssm/rds-user-online-root of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 4 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public] 2020/03/10 08:52:53 Assuming module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public] 2020/03/10 08:52:53 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 3 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 2 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-vpn of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 1 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Dependency /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-db-access-from-public of module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Running module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online now
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:52:53 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online] 2020/03/10 08:53:04 Module /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/rds/online has finished with an error: Hit multiple errors:
exit status 1
[terragrunt] 2020/03/10 08:53:04 Error with plan: [terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:53 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/sg/sg-vpc-traffic/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/.terragrunt-cache/NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/.terragrunt-cache/NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Copying files from /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc into /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/.terragrunt-cache/NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM/rds
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/.terragrunt-cache/NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM/rds
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:53 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc] 2020/03/10 08:52:54 Running command: terraform init -backend-config=encrypt=true -backend-config=key=production/infrastructure/vpc/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Error installing provider "aws": mkdir .terraform: no such file or directory.

Terraform analyses the configuration and state and automatically downloads
plugins for the providers used. However, when attempting to download this
plugin an unexpected error occurred.

This may be caused if for some reason Terraform is unable to reach the
plugin repository. The repository may be unreachable if access is blocked
by a firewall.

If automatic installation is not possible or desirable in your environment,
you may alternatively manually install plugins by downloading a suitable
distribution package and placing the plugin's executable file in the
following directory:
    terraform.d/plugins/darwin_amd64


Error: mkdir .terraform: no such file or directory


[terragrunt] 2020/03/10 08:53:04 Encountered the following errors:
Hit multiple errors:
exit status 1

log of successful thread of run from staging/applications/online-app/api/api-online-frontend-server

terragrunt plan-all --terragrunt-source-update --terragrunt-non-interactive --terragrunt-source ~/code/.infrastructure/tf-modules
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server to /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server to /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server.
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate.
[terragrunt] 2020/03/10 08:52:58 Setting download directory for module /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone to /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone/.terragrunt-cache
[terragrunt] 2020/03/10 08:52:58 The --non-interactive flag is set. To avoid accidentally affecting external dependencies with an xxx-all command, will not run this command against module /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone, which is a dependency of module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone.
[terragrunt] 2020/03/10 08:52:58 Stack at /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server:
  => Module /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic, /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc, /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate, /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic, /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc, /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers, /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app, /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic (excluded: false, dependencies: [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint (excluded: false, dependencies: [])
  => Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc (excluded: false, dependencies: [])
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server must wait for 5 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server must wait on 4 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone must wait for 1 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server must wait for 4 dependencies to finish
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server must wait on 3 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server must wait on 2 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server must wait on 3 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server must wait on 2 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone of module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone of module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server must wait on 1 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server must wait on 1 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate of module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Assuming module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server has already been applied and skipping it
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:52:58 Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server has finished successfully!
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Dependency /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server of module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server just finished successfully. Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server must wait on 0 more dependencies.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Running module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server now
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:52:58 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:05 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server/.terragrunt-cache/Nx-Netykb6oFZzjxUgVaEQHzgLg/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:05 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server/.terragrunt-cache/Nx-Netykb6oFZzjxUgVaEQHzgLg/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:05 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server into /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server/.terragrunt-cache/Nx-Netykb6oFZzjxUgVaEQHzgLg/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:05 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server/.terragrunt-cache/Nx-Netykb6oFZzjxUgVaEQHzgLg/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:15 Running command: terraform plan -lock-timeout=20m -var-file=/Users/example/code/.infrastructure/infra-deployment/commons.tfvars.json -var-file=/Users/example/code/.infrastructure/infra-deployment/staging/environment.tfvars.json
Acquiring state lock. This may take a few moments...
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

data.aws_iam_policy_document.apigw_assume_role_policy: Refreshing state...

------------------------------------------------------------------------

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

[ REDACTED AS NOT RELEVANT ]

Plan: 20 to add, 0 to change, 0 to destroy.

Warning: Value for undeclared variable

[ REDACTED AS NOT RELEVANT ]

In addition to the other similar warnings shown, 30 other variable(s) defined
without being declared.


------------------------------------------------------------------------

Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.

Releasing state lock. This may take a few moments...
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:27 Module /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server has finished successfully!
[terragrunt] 2020/03/10 08:55:27 Error with plan: [terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:52:58 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:58 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:52:59 Running command: terraform init -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/infrastructure/vpc/terraform.tfstate -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/vpc] 2020/03/10 08:53:09 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:13 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:13 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic/.terragrunt-cache/zKdOb--6dtUzyvLNl8kr-cthznI/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:13 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic/.terragrunt-cache/zKdOb--6dtUzyvLNl8kr-cthznI/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:13 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic/.terragrunt-cache/zKdOb--6dtUzyvLNl8kr-cthznI/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:13 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic/.terragrunt-cache/zKdOb--6dtUzyvLNl8kr-cthznI/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:13 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:14 Running command: terraform init -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/infrastructure/sg/sg-vpc-traffic/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/sg/sg-vpc-traffic] 2020/03/10 08:53:24 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:27 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone/.terragrunt-cache/2M9yBsHsHnir-rWZdxecAevLf6c/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone/.terragrunt-cache/2M9yBsHsHnir-rWZdxecAevLf6c/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Copying files from /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone into /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone/.terragrunt-cache/2M9yBsHsHnir-rWZdxecAevLf6c/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone/.terragrunt-cache/2M9yBsHsHnir-rWZdxecAevLf6c/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:27 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:28 Running command: terraform init -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=shared/infrastructure/route53/public-hosted-zone/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/shared/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:37 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:40 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:40 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone/.terragrunt-cache/6Dt7uM6VqXyf261n6UEJXPdanM0/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:40 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone/.terragrunt-cache/6Dt7uM6VqXyf261n6UEJXPdanM0/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:40 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone/.terragrunt-cache/6Dt7uM6VqXyf261n6UEJXPdanM0/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:40 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone/.terragrunt-cache/6Dt7uM6VqXyf261n6UEJXPdanM0/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:40 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:41 Running command: terraform init -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/infrastructure/route53/public-hosted-zone/terraform.tfstate -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/route53/public-hosted-zone] 2020/03/10 08:53:50 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:53 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:53 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate/.terragrunt-cache/m7egG5p54tIp1SblS8cn-ZuL_dE/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:53 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate/.terragrunt-cache/m7egG5p54tIp1SblS8cn-ZuL_dE/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:53 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate/.terragrunt-cache/m7egG5p54tIp1SblS8cn-ZuL_dE/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:53 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate/.terragrunt-cache/m7egG5p54tIp1SblS8cn-ZuL_dE/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:53 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:53:54 Running command: terraform init -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/infrastructure/acm/certificate/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/acm/certificate] 2020/03/10 08:54:02 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:05 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers/.terragrunt-cache/oVPZOVoPBTtgbhsS6pmp0mxvc-0/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers/.terragrunt-cache/oVPZOVoPBTtgbhsS6pmp0mxvc-0/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers/.terragrunt-cache/oVPZOVoPBTtgbhsS6pmp0mxvc-0/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers/.terragrunt-cache/oVPZOVoPBTtgbhsS6pmp0mxvc-0/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:05 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:06 Running command: terraform init -backend-config=encrypt=true -backend-config=key=staging/infrastructure/s3/frontend-servers/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/s3/frontend-servers] 2020/03/10 08:54:16 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app/.terragrunt-cache/n-BO3Sb3QJ5aGCBYpqX-cZuOgKM/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app/.terragrunt-cache/n-BO3Sb3QJ5aGCBYpqX-cZuOgKM/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app/.terragrunt-cache/n-BO3Sb3QJ5aGCBYpqX-cZuOgKM/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app/.terragrunt-cache/n-BO3Sb3QJ5aGCBYpqX-cZuOgKM/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:20 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:21 Running command: terraform init -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/infrastructure/cloudfront-s3-bucket/online-app/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/cloudfront-s3-bucket/online-app] 2020/03/10 08:54:31 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 Reading Terragrunt config file at /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint/terragrunt.hcl
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint/.terragrunt-cache/WT4bk7en4a0JvWgHE6prWT54b5c/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint/.terragrunt-cache/WT4bk7en4a0JvWgHE6prWT54b5c/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint into /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint/.terragrunt-cache/WT4bk7en4a0JvWgHE6prWT54b5c/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint/.terragrunt-cache/WT4bk7en4a0JvWgHE6prWT54b5c/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:35 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:36 Running command: terraform init -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/infrastructure/ssm/es-connection-string-online-endpoint/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...
- Downloading plugin for provider "null" (hashicorp/null) 2.1.2...
- Downloading plugin for provider "random" (hashicorp/random) 2.2.1...

The following providers do not have any version constraints in configuration,
so the latest version was installed.

To prevent automatic upgrades to new major versions that may contain breaking
changes, it is recommended to add version = "..." constraints to the
corresponding provider blocks in configuration, with the constraint strings
suggested below.

* provider.null: version = "~> 2.1"
* provider.random: version = "~> 2.2"

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/infrastructure/ssm/es-connection-string-online-endpoint] 2020/03/10 08:54:47 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:50 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:50 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server/.terragrunt-cache/4m03RdQhycFsbv8qH28lfL4ANjs/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:50 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server/.terragrunt-cache/4m03RdQhycFsbv8qH28lfL4ANjs/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:50 Copying files from /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server into /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server/.terragrunt-cache/4m03RdQhycFsbv8qH28lfL4ANjs/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:50 Setting working directory to /Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server/.terragrunt-cache/4m03RdQhycFsbv8qH28lfL4ANjs/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:50 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:54:51 Running command: terraform init -backend-config=key=staging/applications/online-app/lambda/lambda-online-frontend-server/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/lambda/lambda-online-frontend-server] 2020/03/10 08:55:01 Running command: terraform output -json
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:05 Running command: terraform --version
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:05 Initializing remote state for the s3 backend
[terragrunt] [/Users/example/code/.infrastructure/infra-deployment/staging/applications/online-app/api/api-online-frontend-server] 2020/03/10 08:55:06 Running command: terraform init -backend-config=region=[REGION] -backend-config=bucket=terragrunt_state_place -backend-config=dynamodb_table=terragrunt_state_place -backend-config=encrypt=true -backend-config=key=staging/applications/online-app/api/api-online-frontend-server/terraform.tfstate -backend-config=kms_key_id=arn:aws:kms:[REGION]:[ACCOUNT_ID]:key/[KMS_KEY] -lock-timeout=20m

Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "aws" (hashicorp/aws) 2.52.0...

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

@yorinasub17
Copy link
Contributor

Thanks for sharing the logs!

This may be a red herring, but I do see some funky things going on in the logs. In particular, this entry looks suspicious:

(paths abbreviated for easier readability)

[production/infrastructure/vpc] 2020/03/10 08:52:53 Copying files from production/infrastructure/vpc into production/infrastructure/vpc/.terragrunt-cache/NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM/rds

Note how it is copying the source for what looks like a vpc module under the name rds, which would happen if there is a //rds in the terraform source for the vpc config.

Can you share the terraform block of the terragrunt config for /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc?

@zelig81
Copy link
Author

zelig81 commented Mar 11, 2020

Here is the information that you asked to share:

terraform {
  source = "git@GIT.SERVER/URL/PATH/tf-modules.git//vpc"
}

By the way - it was log of failed module rds deployment in production where vpc is one of it's dependencies. It is the reason why it creates in cache of vpc module folder named rds...
Where api-online-frontend-server module deployment also has dependency for the same module source vpc, but different environment (different vpc module in staging environment).

relevant part of log of api-online-frontend-server(source folder:apigw-old)

[terragrunt] [[REDUCTED]staging/infrastructure/vpc] 2020/03/10 08:52:58 The --terragrunt-source-update flag is set, so deleting the temporary folder [REDUCTED]staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM before downloading source.
[terragrunt] [[REDUCTED]staging/infrastructure/vpc] 2020/03/10 08:52:58 Downloading Terraform configurations from file:///Users/example/code/.infrastructure/tf-modules into [REDUCTED]staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM
[terragrunt] [[REDUCTED]staging/infrastructure/vpc] 2020/03/10 08:52:58 Copying files from [REDUCTED]staging/infrastructure/vpc into [REDUCTED]staging/infrastructure/vpc/.terragrunt-cache/RsvRtUSEs3WzngNU_DERhmStJTI/3gRUExxHzVrLLhEhDG9OUe1pTTM/apigw-old

I've launched the following command:
tree --dirsfirst --prune /Users/example/code/.infrastructure/infra-deployment/production/infrastructure/vpc/.terragrunt-cache/NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM/

And got the following:

tree of cache (terragrunt) - which is exact content of the tf-modules repo

./NrUVugQkYGqezkFvRERCCJPGsAQ/3gRUExxHzVrLLhEhDG9OUe1pTTM/
├── acm
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── apigw-old
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── cognito
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── eks
│   ├── gpu-worker
│   │   ├── README.md
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variable.tf
│   ├── master
│   │   ├── README.md
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variable.tf
│   └── worker
│       ├── README.md
│       ├── main.tf
│       ├── outputs.tf
│       └── variable.tf
├── es
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── lambda-old
│   ├── README.md
│   ├── lambda_cloudwatch_to_es.js.tpl
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── msk
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── rds
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── route53
│   └── hosted-zone
│       ├── README.md
│       ├── main.tf
│       ├── outputs.tf
│       └── variables.tf
├── s3
│   ├── cloudfront
│   │   ├── README.md
│   │   ├── main.tf
│   │   ├── output.tf
│   │   └── variables.tf
│   ├── README.md
│   ├── initial.zip
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── sg-generic
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   ├── terragrunt.hcl
│   └── variables.tf
├── sns
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── ssm-parameter
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── ssm-parameters-bulk
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── tgw
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── vpc
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
├── waf
│   ├── README.md
│   ├── main.tf
│   ├── outputs.tf
│   └── variables.tf
└── README.md

22 directories, 82 files

@yorinasub17
Copy link
Contributor

I think I need to dig deeper to fully analyze what is going on here, but unfortunately I am burried at the moment. This is not abandoned by any means, but it will take time to nail down the case since I don't have something that makes it easy to reproduce the issue and iterate on internal probes to pinpoint the cause.

My current hypothesis is that the terragrunt cache is getting wiped by another concurrent thread (since you have the --terragrunt-source-update flag), but not 100% sure since we have mutex locks to prevent this.

Thanks for your patience. If you want to accelerate the process, it would help a lot if you can put up a minimal terragrunt project that depicts the problem and share it with us.

@zelig81
Copy link
Author

zelig81 commented Mar 12, 2020

Thank you for your attention and help anyway, I'll wait patiently :)
I'll create such project

@yorinasub17
Copy link
Contributor

Ok I tried to repro this with a test case, but after 10s of runs, I have not been able to repro along the thread I had in mind. The test case was:

.
├── common.hcl
├── a
│   └── terragrunt.hcl
├── b
│   └── terragrunt.hcl
├── c
│   └── terragrunt.hcl
├── common_dep
│   └── terragrunt.hcl
├── d
│   └── terragrunt.hcl
├── e
│   └── terragrunt.hcl
├── f
│   └── terragrunt.hcl
├── g
│   └── terragrunt.hcl
└── terragrunt.hcl

where common_dep looks like:

terraform {
  source = "../../modules//dep"
}

include {
  path = find_in_parent_folders()
}

and the child config (a-g) looks like:

terraform {
  source = "../../modules//child"
}

locals {
  foo = read_terragrunt_config("${get_terragrunt_dir()}/../common.hcl")
}

include {
  path = find_in_parent_folders()
}

inputs = {
  data = local.foo.dependency.dep.outputs.random_val
}

I tried both with read_terragrunt_config to pull in the dependency block, and dependency rolled into the config.

The terraform config only has a random_string resource and an aws_caller_identity data source to get terraform to download the aws provider.

I also did not observe the behavior where it copies the files in the wrong directory. Here are my logs:

[terragrunt] [/go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep] 2020/03/12 23:58:29 The --terragrunt-source-update flag is set, so deleting the temporary folder /go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep/.terragrunt-cache/jSE_Bm03f3dxevFup3PViHSKf6A/09MzpoTb41YCWVaa403ewLfEPJI before downloading source.
[terragrunt] [/go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep] 2020/03/12 23:58:29 Copying files from /go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep into /go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep/.terragrunt-cache/jSE_Bm03f3dxevFup3PViHSKf6A/09MzpoTb41YCWVaa403ewLfEPJI/dep
[terragrunt] [/go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep] 2020/03/12 23:58:29 Setting working directory to /go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep/.terragrunt-cache/jSE_Bm03f3dxevFup3PViHSKf6A/09MzpoTb41YCWVaa403ewLfEPJI/dep
[terragrunt] [/go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep] 2020/03/12 23:58:29 Generated file /go/src/github.com/gruntwork-io/terragrunt/test/fixture-regressions/concurrent-dependencies/live/common_dep/.terragrunt-cache/jSE_Bm03f3dxevFup3PViHSKf6A/09MzpoTb41YCWVaa403ewLfEPJI/dep/backend.tf.

At this point, I probably need more code, or more logs. Can you take a look at my test case and see if you have any suggestions on how to get it to look closer to your environment?

This might be difficult, but do you think you can get a failure log with the environment variable TG_LOG=debug? That enables a few extra logs around the mutex lock when it tries to fetch dependencies. I'm hoping it might reveal a hint as to what might be going on.

@zelig81
Copy link
Author

zelig81 commented Mar 15, 2020

I've created an example with simple code (provisioning ssm parameter). Example code is here: https://github.com/zelig81/terragrunt_issue_1087
Dependencies:

  • tg-files/var-X depends on tg-files/dep/var-X-dep (X in [a,b,c])

For all the deployments I used the following command(it was plan-all/apply-all/output-all): export TF_LOG=debug; export TG_LOG=debug; terragrunt plan-all --terragrunt-source-update --terragrunt-non-interactive --terragrunt-source ~/code/.external/terragrunt_issue_1087/

When I launch deployment in tg-files/dep (modules without dependencies) - there were no problems. But when I launched modules tg/files/var-a, tg/files/var-b, tg/files/var-c then intermittently (1 in 2-5 launches) I've got the issue of exited plugin in tg-files/dep folder deployment.

Here is the log of failed deployment in tg-files/dep with debug logging

[terragrunt] 2020/03/15 19:40:36 Terragrunt Version: v0.23.2
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] 2020/03/15 19:40:36 Setting download directory for module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep to /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] 2020/03/15 19:40:36 Setting download directory for module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep to /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] 2020/03/15 19:40:36 Setting download directory for module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep to /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache
[terragrunt] 2020/03/15 19:40:36 Stack at /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep:
  => Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep (excluded: false, dependencies: [])
  => Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep (excluded: false, dependencies: [])
  => Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep (excluded: false, dependencies: [])
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Running module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep now
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Reading Terragrunt config file at /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/terragrunt.hcl
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Running module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep now
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Reading Terragrunt config file at /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/terragrunt.hcl
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep must wait for 0 dependencies to finish
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Running module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep now
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Reading Terragrunt config file at /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/terragrunt.hcl
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Did not find any locals block: skipping evaluation.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE before downloading source.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE before downloading source.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 The --terragrunt-source-update flag is set, so deleting the temporary folder /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE before downloading source.
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Downloading Terraform configurations from file:///Users/example/code/.external/terragrunt_issue_1087 into /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Downloading Terraform configurations from file:///Users/example/code/.external/terragrunt_issue_1087 into /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Downloading Terraform configurations from file:///Users/example/code/.external/terragrunt_issue_1087 into /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Copying files from /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep into /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Copying files from /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep into /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Setting working directory to /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Setting working directory to /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Copying files from /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep into /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Setting working directory to /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:44:51 Running command: terraform plan -lock-timeout=20m
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

aws_ssm_parameter.this: Refreshing state... [id=/test/terragrunt_issue_1087/dep/var-b-dep]

------------------------------------------------------------------------

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # aws_ssm_parameter.this will be updated in-place
  ~ resource "aws_ssm_parameter" "this" {
        arn     = "arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-b-dep"
        id      = "/test/terragrunt_issue_1087/dep/var-b-dep"
        key_id  = "alias/aws/ssm"
        name    = "/test/terragrunt_issue_1087/dep/var-b-dep"
        tags    = {}
        tier    = "Standard"
        type    = "SecureString"
      ~ value   = (sensitive value)
        version = 1
    }

Plan: 0 to add, 1 to change, 0 to destroy.

------------------------------------------------------------------------

Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.

[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:45:02 Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep has finished successfully!
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:45:03 Running command: terraform plan -lock-timeout=20m
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

aws_ssm_parameter.this: Refreshing state... [id=/test/terragrunt_issue_1087/dep/var-a-dep]

------------------------------------------------------------------------

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # aws_ssm_parameter.this will be updated in-place
  ~ resource "aws_ssm_parameter" "this" {
        arn     = "arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-a-dep"
        id      = "/test/terragrunt_issue_1087/dep/var-a-dep"
        key_id  = "alias/aws/ssm"
        name    = "/test/terragrunt_issue_1087/dep/var-a-dep"
        tags    = {}
        tier    = "Standard"
        type    = "SecureString"
      ~ value   = (sensitive value)
        version = 1
    }

Plan: 0 to add, 1 to change, 0 to destroy.

------------------------------------------------------------------------

Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.

[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:45:13 Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep has finished successfully!
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:45:59 Running command: terraform plan -lock-timeout=20m
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

aws_ssm_parameter.this: Refreshing state... [id=/test/terragrunt_issue_1087/dep/var-c-dep]

------------------------------------------------------------------------

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # aws_ssm_parameter.this will be updated in-place
  ~ resource "aws_ssm_parameter" "this" {
        arn     = "arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-c-dep"
        id      = "/test/terragrunt_issue_1087/dep/var-c-dep"
        key_id  = "alias/aws/ssm"
        name    = "/test/terragrunt_issue_1087/dep/var-c-dep"
        tags    = {}
        tier    = "Standard"
        type    = "SecureString"
      ~ value   = (sensitive value)
        version = 1
    }

Plan: 0 to add, 1 to change, 0 to destroy.

------------------------------------------------------------------------

Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.

[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:46:15 Module /Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep has finished successfully!
[terragrunt] 2020/03/15 19:46:15 Error with plan: [terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Running command: terraform --version
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep] 2020/03/15 19:40:36 Running command: terraform init -backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-a-dep/terraform.tfstate -lock-timeout=20m
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:40:36 [INFO] Terraform version: 0.12.23
2020/03/15 19:40:36 [INFO] Go runtime version: go1.12.13
2020/03/15 19:40:36 [INFO] CLI args: []string{"/usr/local/bin/terraform", "init", "-backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-a-dep/terraform.tfstate", "-lock-timeout=20m"}
2020/03/15 19:40:36 [DEBUG] Attempting to open CLI config file: /Users/example/.terraformrc
2020/03/15 19:40:36 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/15 19:40:36 [INFO] CLI command args: []string{"init", "-backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-a-dep/terraform.tfstate", "-lock-timeout=20m"}
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----

Initializing the backend...
2020/03/15 19:40:36 [DEBUG] New state was assigned lineage "b3ae01a4-804b-1879-5083-1293390c84aa"
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "."
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:40:36 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2020/03/15 19:40:36 [DEBUG] New state was assigned lineage "1495fbd4-e6c4-704f-4edf-72bf42d6525f"

Successfully configured the backend "local"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "."
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:40:36 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] plugin requirements: "aws"="~> 2.53.0"
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:40:36 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
2020/03/15 19:40:37 [DEBUG] fetching provider versions from "https://registry.terraform.io/v1/providers/-/aws/versions"
2020/03/15 19:40:37 [DEBUG] GET https://registry.terraform.io/v1/providers/-/aws/versions
2020/03/15 19:40:37 [DEBUG] fetching provider location from "https://registry.terraform.io/v1/providers/hashicorp/aws/2.53.0/download/darwin/amd64"
2020/03/15 19:40:37 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/2.53.0/download/darwin/amd64
2020/03/15 19:40:38 [DEBUG] verified GPG signature with key from HashiCorp Security <security@hashicorp.com>
2020/03/15 19:40:38 [DEBUG] getting provider "aws" (hashicorp/aws) version "2.53.0"
2020/03/15 19:40:38 [DEBUG] plugin cache is disabled, so downloading aws 2.53.0 from https://releases.hashicorp.com/terraform-provider-aws/2.53.0/terraform-provider-aws_2.53.0_darwin_amd64.zip?checksum=sha256:1c971e22842fe2e74f40b01f0d1e30ed3621e0af07504f8245480a301af0ef06
- Downloading plugin for provider "aws" (hashicorp/aws) 2.53.0...
2020/03/15 19:45:02 [DEBUG] looking for the aws 2.53.0 plugin we just installed
2020/03/15 19:45:02 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:02 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:02 [DEBUG] all plugins found discovery.PluginMetaSet{discovery.PluginMeta{Name:"aws", Version:"2.53.0", Path:"/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"}:struct {}{}}
2020/03/15 19:45:02 [DEBUG] filtered plugins discovery.PluginMetaSet{discovery.PluginMeta{Name:"aws", Version:"2.53.0", Path:"/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"}:struct {}{}}
2020/03/15 19:45:02 [DEBUG] checking for provider in "."
2020/03/15 19:45:02 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:45:02 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:02 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:02 [DEBUG] found valid plugin: "aws", "2.53.0", "/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"

2020/03/15 19:45:03 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:03 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
2020/03/15 19:45:03 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:45:03 [INFO] Terraform version: 0.12.23
2020/03/15 19:45:03 [INFO] Go runtime version: go1.12.13
2020/03/15 19:45:03 [INFO] CLI args: []string{"/usr/local/bin/terraform", "plan", "-lock-timeout=20m"}
2020/03/15 19:45:03 [DEBUG] Attempting to open CLI config file: /Users/example/.terraformrc
2020/03/15 19:45:03 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/15 19:45:03 [INFO] CLI command args: []string{"plan", "-lock-timeout=20m"}
2020/03/15 19:45:03 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:45:03 [DEBUG] checking for provider in "."
2020/03/15 19:45:03 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:45:03 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:03 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:03 [DEBUG] found valid plugin: "aws", "2.53.0", "/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:03 [DEBUG] checking for provisioner in "."
2020/03/15 19:45:03 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:45:03 [DEBUG] checking for provisioner in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:03 [INFO] backend/local: starting Plan operation
2020-03-15T19:45:03.722+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:45:03.744+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:45:03.754+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82447
2020-03-15T19:45:03.755+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:45:03.779+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:45:03.778+0200
2020-03-15T19:45:03.808+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:45:03.808+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin304357306 network=unix timestamp=2020-03-15T19:45:03.808+0200
2020-03-15T19:45:03.903+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82447
2020-03-15T19:45:03.903+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:45:03 [INFO] terraform: building graph: GraphTypeValidate
2020/03/15 19:45:03 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodeValidatableResource) needs provider.aws
2020/03/15 19:45:03 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:45:03 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:45:03 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:45:03 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:45:03 [DEBUG] Starting graph walk: walkValidate
2020-03-15T19:45:03.904+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:45:03.926+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:45:03.937+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82448
2020-03-15T19:45:03.937+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:45:03.960+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:45:03.959+0200
2020-03-15T19:45:03.988+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:45:03.988+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin050650247 network=unix timestamp=2020-03-15T19:45:03.987+0200
2020-03-15T19:45:04.120+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82448
2020-03-15T19:45:04.120+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:45:04 [INFO] backend/local: plan calling Refresh
2020/03/15 19:45:04 [INFO] terraform: building graph: GraphTypeRefresh
2020/03/15 19:45:04 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodeRefreshableManagedResource) needs provider.aws
2020/03/15 19:45:04 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:45:04 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:45:04 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:45:04 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:45:04 [DEBUG] Starting graph walk: walkRefresh
2020-03-15T19:45:04.121+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:45:04.147+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:45:04.162+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82449
2020-03-15T19:45:04.162+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:45:04.184+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:45:04.184+0200
2020-03-15T19:45:04.214+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:45:04.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin511626228 network=unix timestamp=2020-03-15T19:45:04.214+0200
2020-03-15T19:45:04.300+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [INFO] No assume_role block read from configuration
2020-03-15T19:45:04.300+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [INFO] Building AWS auth structure
2020-03-15T19:45:04.300+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [INFO] Setting AWS metadata API timeout to 100ms
2020-03-15T19:45:04.903+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2020-03-15T19:45:04.903+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [INFO] AWS Auth provider used: "SharedCredentialsProvider"
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:04 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=c179c80a7f1613ae4d680c7ff03d91ce7b0114813e5701703d17f956113772ae
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174504Z
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:45:04.904+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:05 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:05 GMT
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 940b902e-a5cd-46a5-b5bc-457bf8234d4a
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:05 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>940b902e-a5cd-46a5-b5bc-457bf8234d4a</RequestId>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:05 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:05 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=b1fc44ce8a732c9dab120f68cb8cae41186b51926c69006fd24186a9a5609fd1
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174505Z
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:45:05.710+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:06 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:05 GMT
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: ebf2b005-b8cb-4c28-b9b3-9aeb82a03b09
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:06 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:45:06.396+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>ebf2b005-b8cb-4c28-b9b3-9aeb82a03b09</RequestId>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:45:06.397+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:06 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ec2.us-east-1.amazonaws.com
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 87
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=f6d5a9262ebb457ae2a9dd44bfa4a04b7714ce74df258ce7da7f546aebdc77e8
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174506Z
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2020-03-15T19:45:06.400+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:07 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 540
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml;charset=UTF-8
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:06 GMT
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Server: AmazonEC2
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:07 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <requestId>18e2c55f-50cc-419a-a764-a49fb7cca4f1</requestId>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <accountAttributeSet>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         <item>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeName>supported-platforms</attributeName>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeValueSet>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 <item>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                     <attributeValue>VPC</attributeValue>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 </item>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             </attributeValueSet>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         </item>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     </accountAttributeSet>
2020-03-15T19:45:07.412+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </DescribeAccountAttributesResponse>
2020/03/15 19:45:07 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: []
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:07 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/GetParameter Details:
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 75
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=358d204657fdd2fda87359377c041fd6aa8127bc739389d329bd601e168d77bc
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174507Z
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.GetParameter
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"Name":"/test/terragrunt_issue_1087/dep/var-a-dep","WithDecryption":false}
2020-03-15T19:45:07.416+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/GetParameter Details:
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:07 GMT
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 8a76a20c-3a96-48a6-9307-118223969948
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] [aws-sdk-go] {"Parameter":{"ARN":"arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-a-dep","DataType":"text","LastModifiedDate":1.584289608812E9,"Name":"/test/terragrunt_issue_1087/dep/var-a-dep","Type":"SecureString","Value":"AQICAHhSJYq9iB9ly88cN0396CLeEFYQ6sdoxjFyIPH6LZ/5NQEw+Jm6hkEwDMfkna8GsFCbAAAAgzCBgAYJKoZIhvcNAQcGoHMwcQIBADBsBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDKHRobFnVRkZta4wegIBEIA/GADwY447BRISdG0qxAoTtOFHnatPksu3Zw+m09Aw0TU53NUCEw1hTzH1MX9jKhaUa6GgGx6lLWHRNLaJmbGR","Version":1}}
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] Reading SSM Parameter: /test/terragrunt_issue_1087/dep/var-a-dep
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/GetParameter Details:
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 74
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=6d9e436a58c5391c9f9a3508f8a0c0de85dccfd5889fcb6d453027f19b020365
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174508Z
2020-03-15T19:45:08.033+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.GetParameter
2020-03-15T19:45:08.034+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:08.034+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:08.034+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"Name":"/test/terragrunt_issue_1087/dep/var-a-dep","WithDecryption":true}
2020-03-15T19:45:08.034+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/GetParameter Details:
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:07 GMT
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 7633de78-3a5e-4fdc-b5ae-e7a216b3bbfe
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] [aws-sdk-go] {"Parameter":{"ARN":"arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-a-dep","DataType":"text","LastModifiedDate":1.584289608812E9,"Name":"/test/terragrunt_issue_1087/dep/var-a-dep","Type":"SecureString","Value":"c126d5e8-b7c6-f61a-0f39-2260b14ecdeb","Version":1}}
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:08 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/DescribeParameters Details:
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:45:08.682+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 110
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=a04802c381babbbeededbec5e668b7a2215581aace747f73a5c34d7d32121435
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174508Z
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.DescribeParameters
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"ParameterFilters":[{"Key":"Name","Option":"Equals","Values":["/test/terragrunt_issue_1087/dep/var-a-dep"]}]}
2020-03-15T19:45:08.683+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:09 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/DescribeParameters Details:
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:08 GMT
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 05dda296-2899-477a-99e6-edff59918b78
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:09.377+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:09 [DEBUG] [aws-sdk-go] {"Parameters":[{"DataType":"text","KeyId":"alias/aws/ssm","LastModifiedDate":1.584289608812E9,"LastModifiedUser":"arn:aws:iam::[REDUCTED]:user/example","Name":"/test/terragrunt_issue_1087/dep/var-a-dep","Policies":[],"Tier":"Standard","Type":"SecureString","Version":1}]}
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:09 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/ListTagsForResource Details:
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 85
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=ce4484699e789a360ca7b9998c1666c434a87a8f81ae0b223a2c8ce34b8db09d
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174509Z
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.ListTagsForResource
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"ResourceId":"/test/terragrunt_issue_1087/dep/var-a-dep","ResourceType":"Parameter"}
2020-03-15T19:45:09.378+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/ListTagsForResource Details:
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:09 GMT
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: e75221f3-7513-4886-8586-af8ddbeb4a94
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:10.080+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [DEBUG] [aws-sdk-go] {"TagList":[]}
2020-03-15T19:45:10.084+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82449
2020-03-15T19:45:10.084+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:45:10 [INFO] backend/local: plan calling Plan
2020/03/15 19:45:10 [INFO] terraform: building graph: GraphTypePlan
2020/03/15 19:45:10 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodePlannableResource) needs provider.aws
2020/03/15 19:45:10 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:45:10 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:45:10 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:45:10 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:45:10 [DEBUG] Starting graph walk: walkPlan
2020-03-15T19:45:10.086+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:45:10.115+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:45:10.128+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82516
2020-03-15T19:45:10.128+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:45:10.151+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:45:10.150+0200
2020-03-15T19:45:10.181+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:45:10.181+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin690698403 network=unix timestamp=2020-03-15T19:45:10.181+0200
2020-03-15T19:45:10.270+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [INFO] No assume_role block read from configuration
2020-03-15T19:45:10.270+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [INFO] Building AWS auth structure
2020-03-15T19:45:10.270+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [INFO] Setting AWS metadata API timeout to 100ms
2020-03-15T19:45:10.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2020-03-15T19:45:10.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [INFO] AWS Auth provider used: "SharedCredentialsProvider"
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:10 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=359105e2769baa005a4a031609a8caef893ed090e6a70fca47b036288d3301fa
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174510Z
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:45:10.922+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:11 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:10 GMT
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 438f813b-a72c-4730-a1c2-585e218c9d2d
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:11 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>438f813b-a72c-4730-a1c2-585e218c9d2d</RequestId>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:45:11.734+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:11 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:11 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=456ce500b6bc1a73743dcafbffe43949423850b58d54518a93eb9fd56979eb2e
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174511Z
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:45:11.735+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:12 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:11 GMT
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: a6b71afd-5ff0-4f2a-841e-9610c7dd0426
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:12 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>a6b71afd-5ff0-4f2a-841e-9610c7dd0426</RequestId>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:45:12.485+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:12 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ec2.us-east-1.amazonaws.com
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 87
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=8da64cf59c213dafa927a2799cd9d121bf8e0b94d3b70e2410f2fe07b8f00b59
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174512Z
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2020-03-15T19:45:12.488+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:13 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 540
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml;charset=UTF-8
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:12 GMT
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Server: AmazonEC2
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:13 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <requestId>f962a49f-4aae-41ea-b930-20ebe498ab40</requestId>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <accountAttributeSet>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         <item>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeName>supported-platforms</attributeName>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeValueSet>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 <item>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                     <attributeValue>VPC</attributeValue>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 </item>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             </attributeValueSet>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         </item>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     </accountAttributeSet>
2020-03-15T19:45:13.225+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </DescribeAccountAttributesResponse>
2020/03/15 19:45:13 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: []
2020-03-15T19:45:13.235+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-a-dep/.terragrunt-cache/sWpiXw4jO_zXUQoMreb6qjfb6V8/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82516
2020-03-15T19:45:13.235+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:45:13 [INFO] backend/local: plan operation completed
[terragrunt] 2020/03/15 19:46:15 Error with plan: [terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Running command: terraform --version
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep] 2020/03/15 19:40:36 Running command: terraform init -backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-b-dep/terraform.tfstate -lock-timeout=20m
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:40:36 [INFO] Terraform version: 0.12.23
2020/03/15 19:40:36 [INFO] Go runtime version: go1.12.13
2020/03/15 19:40:36 [INFO] CLI args: []string{"/usr/local/bin/terraform", "init", "-backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-b-dep/terraform.tfstate", "-lock-timeout=20m"}
2020/03/15 19:40:36 [DEBUG] Attempting to open CLI config file: /Users/example/.terraformrc
2020/03/15 19:40:36 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/15 19:40:36 [INFO] CLI command args: []string{"init", "-backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-b-dep/terraform.tfstate", "-lock-timeout=20m"}
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----

Initializing the backend...
2020/03/15 19:40:36 [DEBUG] New state was assigned lineage "bb0d06a7-96e7-55c3-61d7-1f2e395f1632"
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "."
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:40:36 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2020/03/15 19:40:36 [DEBUG] New state was assigned lineage "78a172fa-0c39-f5b8-f26a-d14804d68bee"

Successfully configured the backend "local"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "."
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:40:36 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] plugin requirements: "aws"="~> 2.53.0"
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:40:36 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
2020/03/15 19:40:37 [DEBUG] fetching provider versions from "https://registry.terraform.io/v1/providers/-/aws/versions"
2020/03/15 19:40:37 [DEBUG] GET https://registry.terraform.io/v1/providers/-/aws/versions
2020/03/15 19:40:37 [DEBUG] fetching provider location from "https://registry.terraform.io/v1/providers/hashicorp/aws/2.53.0/download/darwin/amd64"
2020/03/15 19:40:37 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/2.53.0/download/darwin/amd64
2020/03/15 19:40:37 [DEBUG] verified GPG signature with key from HashiCorp Security <security@hashicorp.com>
2020/03/15 19:40:37 [DEBUG] getting provider "aws" (hashicorp/aws) version "2.53.0"
2020/03/15 19:40:37 [DEBUG] plugin cache is disabled, so downloading aws 2.53.0 from https://releases.hashicorp.com/terraform-provider-aws/2.53.0/terraform-provider-aws_2.53.0_darwin_amd64.zip?checksum=sha256:1c971e22842fe2e74f40b01f0d1e30ed3621e0af07504f8245480a301af0ef06
- Downloading plugin for provider "aws" (hashicorp/aws) 2.53.0...
2020/03/15 19:44:51 [DEBUG] looking for the aws 2.53.0 plugin we just installed
2020/03/15 19:44:51 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:44:51 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:44:51 [DEBUG] all plugins found discovery.PluginMetaSet{discovery.PluginMeta{Name:"aws", Version:"2.53.0", Path:"/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"}:struct {}{}}
2020/03/15 19:44:51 [DEBUG] filtered plugins discovery.PluginMetaSet{discovery.PluginMeta{Name:"aws", Version:"2.53.0", Path:"/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"}:struct {}{}}
2020/03/15 19:44:51 [DEBUG] checking for provider in "."
2020/03/15 19:44:51 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:44:51 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:44:51 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:44:51 [DEBUG] found valid plugin: "aws", "2.53.0", "/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"

2020/03/15 19:44:51 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:44:51 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
2020/03/15 19:44:51 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:44:51 [INFO] Terraform version: 0.12.23
2020/03/15 19:44:51 [INFO] Go runtime version: go1.12.13
2020/03/15 19:44:51 [INFO] CLI args: []string{"/usr/local/bin/terraform", "plan", "-lock-timeout=20m"}
2020/03/15 19:44:51 [DEBUG] Attempting to open CLI config file: /Users/example/.terraformrc
2020/03/15 19:44:51 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/15 19:44:51 [INFO] CLI command args: []string{"plan", "-lock-timeout=20m"}
2020/03/15 19:44:51 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:44:51 [DEBUG] checking for provider in "."
2020/03/15 19:44:51 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:44:51 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:44:51 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:44:51 [DEBUG] found valid plugin: "aws", "2.53.0", "/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:44:51 [DEBUG] checking for provisioner in "."
2020/03/15 19:44:51 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:44:51 [DEBUG] checking for provisioner in ".terraform/plugins/darwin_amd64"
2020/03/15 19:44:51 [INFO] backend/local: starting Plan operation
2020-03-15T19:44:52.313+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:44:52.336+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:44:52.347+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82309
2020-03-15T19:44:52.347+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:44:52.370+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:44:52.370+0200
2020-03-15T19:44:52.401+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:44:52.401+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin392320328 network=unix timestamp=2020-03-15T19:44:52.401+0200
2020-03-15T19:44:52.491+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82309
2020-03-15T19:44:52.491+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:44:52 [INFO] terraform: building graph: GraphTypeValidate
2020/03/15 19:44:52 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodeValidatableResource) needs provider.aws
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:44:52 [DEBUG] Starting graph walk: walkValidate
2020-03-15T19:44:52.492+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:44:52.514+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:44:52.526+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82310
2020-03-15T19:44:52.526+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:44:52.549+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:44:52.548+0200
2020-03-15T19:44:52.578+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:44:52.578+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin387747357 network=unix timestamp=2020-03-15T19:44:52.578+0200
2020-03-15T19:44:52.698+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82310
2020-03-15T19:44:52.698+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:44:52 [INFO] backend/local: plan calling Refresh
2020/03/15 19:44:52 [INFO] terraform: building graph: GraphTypeRefresh
2020/03/15 19:44:52 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodeRefreshableManagedResource) needs provider.aws
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:44:52 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:44:52 [DEBUG] Starting graph walk: walkRefresh
2020-03-15T19:44:52.699+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:44:52.722+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:44:52.736+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82311
2020-03-15T19:44:52.736+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:44:52.759+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:44:52.759+0200
2020-03-15T19:44:52.789+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:44:52.789+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin313614618 network=unix timestamp=2020-03-15T19:44:52.789+0200
2020-03-15T19:44:52.884+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:52 [INFO] No assume_role block read from configuration
2020-03-15T19:44:52.884+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:52 [INFO] Building AWS auth structure
2020-03-15T19:44:52.884+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:52 [INFO] Setting AWS metadata API timeout to 100ms
2020-03-15T19:44:54.310+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:54 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2020-03-15T19:44:54.311+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:54 [INFO] AWS Auth provider used: "SharedCredentialsProvider"
2020-03-15T19:44:54.311+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:54 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:54 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=236320cae65b4fa5d204fd58d9921160284aa9647a010a0db0338b93e489fc43
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174454Z
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:44:54.312+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:55 GMT
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 5884978a-7a7f-44f6-a0fe-376b2d225ef4
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>5884978a-7a7f-44f6-a0fe-376b2d225ef4</RequestId>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:44:55.177+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=6aafe1b40e0fa9eb0f681f94b5d42f3e8419f78f06006e4ca9ad118a3cffcf8b
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:44:55.178+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174455Z
2020-03-15T19:44:55.179+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:55.179+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:55.179+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:44:55.179+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:55 GMT
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 7c313e88-fbb6-4dd8-816e-99225ed85c74
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:55.872+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>7c313e88-fbb6-4dd8-816e-99225ed85c74</RequestId>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:44:55.873+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:55 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ec2.us-east-1.amazonaws.com
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 87
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=86487a9755dd58cb6db7f080181fde1bf4d7de935d98193f34478b6dcf30d08e
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174455Z
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2020-03-15T19:44:55.876+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:56 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 540
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml;charset=UTF-8
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:56 GMT
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Server: AmazonEC2
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:56 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <requestId>bd551674-4cb1-4f84-827c-4b6ac0ea7e65</requestId>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <accountAttributeSet>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         <item>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeName>supported-platforms</attributeName>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeValueSet>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 <item>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                     <attributeValue>VPC</attributeValue>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 </item>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             </attributeValueSet>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         </item>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     </accountAttributeSet>
2020-03-15T19:44:56.753+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </DescribeAccountAttributesResponse>
2020/03/15 19:44:56 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: []
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:56 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/GetParameter Details:
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 75
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=278cdb6e49ef459983b3fc72bc6a3591767af73529b01ec78d6627970703a339
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174456Z
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.GetParameter
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"Name":"/test/terragrunt_issue_1087/dep/var-b-dep","WithDecryption":false}
2020-03-15T19:44:56.758+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:57 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/GetParameter Details:
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:57 GMT
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: b0d6f70b-5d39-4586-8d0b-1d2f3fb6f018
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:57.569+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:57 [DEBUG] [aws-sdk-go] {"Parameter":{"ARN":"arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-b-dep","DataType":"text","LastModifiedDate":1.584289618694E9,"Name":"/test/terragrunt_issue_1087/dep/var-b-dep","Type":"SecureString","Value":"AQICAHhSJYq9iB9ly88cN0396CLeEFYQ6sdoxjFyIPH6LZ/5NQGL/hcDG4UQfwG6zcKwcZ5ZAAAAgzCBgAYJKoZIhvcNAQcGoHMwcQIBADBsBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDEsxdMLXEGzB4y7Q5gIBEIA/nu7kQoIIQbp+EwRCKSTa5yI3uT0UeCCB5OMgYni5+efZ8vckir/0prEq3z/abJ05DGtXbynyJH/PazuoiQW5","Version":1}}
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:57 [DEBUG] Reading SSM Parameter: /test/terragrunt_issue_1087/dep/var-b-dep
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:57 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/GetParameter Details:
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 74
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=57ec3a428cfa2c96e27a9f3badf428a439515ab2c91a3e2e391001a91b1a8fd5
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174457Z
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.GetParameter
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"Name":"/test/terragrunt_issue_1087/dep/var-b-dep","WithDecryption":true}
2020-03-15T19:44:57.570+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:58 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/GetParameter Details:
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:57 GMT
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: e3aefc0c-e03d-485a-81f4-5413d9d1f2f0
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:58 [DEBUG] [aws-sdk-go] {"Parameter":{"ARN":"arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-b-dep","DataType":"text","LastModifiedDate":1.584289618694E9,"Name":"/test/terragrunt_issue_1087/dep/var-b-dep","Type":"SecureString","Value":"95dccb13-852c-834f-c774-bba414695331","Version":1}}
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:58 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/DescribeParameters Details:
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 110
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=5d933184fbeeb83d085bb64a12d56b6325d248ce2f2bebee75b34960e0dec43a
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174458Z
2020-03-15T19:44:58.214+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.DescribeParameters
2020-03-15T19:44:58.215+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:58.215+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:58.215+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"ParameterFilters":[{"Key":"Name","Option":"Equals","Values":["/test/terragrunt_issue_1087/dep/var-b-dep"]}]}
2020-03-15T19:44:58.215+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:58.911+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:58 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/DescribeParameters Details:
2020-03-15T19:44:58.911+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:58.911+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:58.911+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:58.911+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:58.911+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:58 GMT
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 2852cfa8-e7e8-46a6-a12f-874a38ac5e58
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:58 [DEBUG] [aws-sdk-go] {"Parameters":[{"DataType":"text","KeyId":"alias/aws/ssm","LastModifiedDate":1.584289618694E9,"LastModifiedUser":"arn:aws:iam::[REDUCTED]:user/example","Name":"/test/terragrunt_issue_1087/dep/var-b-dep","Policies":[],"Tier":"Standard","Type":"SecureString","Version":1}]}
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:58 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/ListTagsForResource Details:
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 85
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=5525b03dc2a14226ec81578d4712642c3f2536abf3665d48bf32901fa481bbf0
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174458Z
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.ListTagsForResource
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"ResourceId":"/test/terragrunt_issue_1087/dep/var-b-dep","ResourceType":"Parameter"}
2020-03-15T19:44:58.912+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:59 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/ListTagsForResource Details:
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:44:59 GMT
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 017ce6c9-e76c-47f4-bdbb-d98b6b6ff5cd
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:44:59.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:59 [DEBUG] [aws-sdk-go] {"TagList":[]}
2020-03-15T19:44:59.620+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82311
2020-03-15T19:44:59.620+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:44:59 [INFO] backend/local: plan calling Plan
2020/03/15 19:44:59 [INFO] terraform: building graph: GraphTypePlan
2020/03/15 19:44:59 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodePlannableResource) needs provider.aws
2020/03/15 19:44:59 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:44:59 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:44:59 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:44:59 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:44:59 [DEBUG] Starting graph walk: walkPlan
2020-03-15T19:44:59.622+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:44:59.651+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:44:59.665+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82398
2020-03-15T19:44:59.665+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:44:59.688+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:44:59.688+0200
2020-03-15T19:44:59.720+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:44:59.720+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin572911373 network=unix timestamp=2020-03-15T19:44:59.719+0200
2020-03-15T19:44:59.815+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:59 [INFO] No assume_role block read from configuration
2020-03-15T19:44:59.815+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:59 [INFO] Building AWS auth structure
2020-03-15T19:44:59.815+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:44:59 [INFO] Setting AWS metadata API timeout to 100ms
2020-03-15T19:45:00.426+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:00 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2020-03-15T19:45:00.427+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:00 [INFO] AWS Auth provider used: "SharedCredentialsProvider"
2020-03-15T19:45:00.427+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:00 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:00 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=ade979b1afe305fafca3f1e5185df290e9105db4c1140960356bb8019f902395
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174500Z
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:45:00.428+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:01.221+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:45:01.221+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:01.221+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:01.221+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:01.221+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:00 GMT
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 6503be96-57bc-457f-ad44-f346cf0c4645
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>6503be96-57bc-457f-ad44-f346cf0c4645</RequestId>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=c34e14a70ee9bd0da642332e289f6deb898cce312da89bcb5b81ee84f72be892
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174501Z
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:45:01.222+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:01 GMT
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: b3c5b8a5-94f0-4cfb-b3ee-70014b674e71
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>b3c5b8a5-94f0-4cfb-b3ee-70014b674e71</RequestId>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:45:01.900+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:01 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ec2.us-east-1.amazonaws.com
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 87
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=cb7aaa39cc4fed6b3696ecc5368faa85e80f95d5f72086d69b4be0a9127ac64a
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174501Z
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2020-03-15T19:45:01.902+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:02 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 540
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml;charset=UTF-8
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:45:01 GMT
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Server: AmazonEC2
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:45:02 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <requestId>4ef487a5-6f1d-487c-8dbd-3442004da8b2</requestId>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <accountAttributeSet>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         <item>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeName>supported-platforms</attributeName>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeValueSet>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 <item>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                     <attributeValue>VPC</attributeValue>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 </item>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             </attributeValueSet>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         </item>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     </accountAttributeSet>
2020-03-15T19:45:02.615+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </DescribeAccountAttributesResponse>
2020/03/15 19:45:02 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: []
2020-03-15T19:45:02.620+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-b-dep/.terragrunt-cache/O-xNW5tvhvTl7u5KnBawOMbXMJk/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=82398
2020-03-15T19:45:02.620+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:45:02 [INFO] backend/local: plan operation completed
[terragrunt] 2020/03/15 19:46:15 Error with plan: [terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Running command: terraform --version
[terragrunt] [/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep] 2020/03/15 19:40:36 Running command: terraform init -backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-c-dep/terraform.tfstate -lock-timeout=20m
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:40:36 [INFO] Terraform version: 0.12.23
2020/03/15 19:40:36 [INFO] Go runtime version: go1.12.13
2020/03/15 19:40:36 [INFO] CLI args: []string{"/usr/local/bin/terraform", "init", "-backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-c-dep/terraform.tfstate", "-lock-timeout=20m"}
2020/03/15 19:40:36 [DEBUG] Attempting to open CLI config file: /Users/example/.terraformrc
2020/03/15 19:40:36 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/15 19:40:36 [INFO] CLI command args: []string{"init", "-backend-config=path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/state/dep/var-c-dep/terraform.tfstate", "-lock-timeout=20m"}
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----

Initializing the backend...
2020/03/15 19:40:36 [DEBUG] New state was assigned lineage "781dec60-d8c8-f8e1-6590-7d49dabf0e39"
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "."
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:40:36 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2020/03/15 19:40:36 [DEBUG] New state was assigned lineage "c17dbbe3-509e-c02b-c594-5f4fda3d3b29"

Successfully configured the backend "local"! Terraform will automatically
use this backend unless the backend configuration changes.
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "."
2020/03/15 19:40:36 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:40:36 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory
2020/03/15 19:40:36 [DEBUG] checking for provider in "."
2020/03/15 19:40:36 [DEBUG] checking for provider in "/usr/local/bin"

2020/03/15 19:40:36 [DEBUG] plugin requirements: "aws"="~> 2.53.0"
2020/03/15 19:40:36 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:40:36 [DEBUG] Service discovery for registry.terraform.io at https://registry.terraform.io/.well-known/terraform.json
Initializing provider plugins...
- Checking for available provider plugins...
2020/03/15 19:40:37 [DEBUG] fetching provider versions from "https://registry.terraform.io/v1/providers/-/aws/versions"
2020/03/15 19:40:37 [DEBUG] GET https://registry.terraform.io/v1/providers/-/aws/versions
2020/03/15 19:40:37 [DEBUG] fetching provider location from "https://registry.terraform.io/v1/providers/hashicorp/aws/2.53.0/download/darwin/amd64"
2020/03/15 19:40:37 [DEBUG] GET https://registry.terraform.io/v1/providers/hashicorp/aws/2.53.0/download/darwin/amd64
2020/03/15 19:40:38 [DEBUG] verified GPG signature with key from HashiCorp Security <security@hashicorp.com>
2020/03/15 19:40:38 [DEBUG] getting provider "aws" (hashicorp/aws) version "2.53.0"
2020/03/15 19:40:38 [DEBUG] plugin cache is disabled, so downloading aws 2.53.0 from https://releases.hashicorp.com/terraform-provider-aws/2.53.0/terraform-provider-aws_2.53.0_darwin_amd64.zip?checksum=sha256:1c971e22842fe2e74f40b01f0d1e30ed3621e0af07504f8245480a301af0ef06
- Downloading plugin for provider "aws" (hashicorp/aws) 2.53.0...
2020/03/15 19:45:59 [DEBUG] looking for the aws 2.53.0 plugin we just installed
2020/03/15 19:45:59 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:59 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:59 [DEBUG] all plugins found discovery.PluginMetaSet{discovery.PluginMeta{Name:"aws", Version:"2.53.0", Path:"/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"}:struct {}{}}
2020/03/15 19:45:59 [DEBUG] filtered plugins discovery.PluginMetaSet{discovery.PluginMeta{Name:"aws", Version:"2.53.0", Path:"/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"}:struct {}{}}
2020/03/15 19:45:59 [DEBUG] checking for provider in "."
2020/03/15 19:45:59 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:45:59 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:59 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:59 [DEBUG] found valid plugin: "aws", "2.53.0", "/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:59 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:59 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
2020/03/15 19:45:59 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:45:59 [INFO] Terraform version: 0.12.23
2020/03/15 19:45:59 [INFO] Go runtime version: go1.12.13
2020/03/15 19:45:59 [INFO] CLI args: []string{"/usr/local/bin/terraform", "plan", "-lock-timeout=20m"}
2020/03/15 19:45:59 [DEBUG] Attempting to open CLI config file: /Users/example/.terraformrc
2020/03/15 19:45:59 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/15 19:45:59 [INFO] CLI command args: []string{"plan", "-lock-timeout=20m"}
2020/03/15 19:45:59 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility.
  Use TF_LOG=TRACE to see Terraform's internal logs.
  ----
2020/03/15 19:45:59 [DEBUG] checking for provider in "."
2020/03/15 19:45:59 [DEBUG] checking for provider in "/usr/local/bin"
2020/03/15 19:45:59 [DEBUG] checking for provider in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:59 [DEBUG] found provider "terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:59 [DEBUG] found valid plugin: "aws", "2.53.0", "/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4"
2020/03/15 19:45:59 [DEBUG] checking for provisioner in "."
2020/03/15 19:45:59 [DEBUG] checking for provisioner in "/usr/local/bin"
2020/03/15 19:45:59 [DEBUG] checking for provisioner in ".terraform/plugins/darwin_amd64"
2020/03/15 19:45:59 [INFO] backend/local: starting Plan operation
2020-03-15T19:46:00.325+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:46:00.347+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:46:00.358+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83035
2020-03-15T19:46:00.358+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:46:00.381+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:46:00.380+0200
2020-03-15T19:46:00.411+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:46:00.411+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin549580614 network=unix timestamp=2020-03-15T19:46:00.410+0200
2020-03-15T19:46:00.498+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83035
2020-03-15T19:46:00.498+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:46:00 [INFO] terraform: building graph: GraphTypeValidate
2020/03/15 19:46:00 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodeValidatableResource) needs provider.aws
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:46:00 [DEBUG] Starting graph walk: walkValidate
2020-03-15T19:46:00.500+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:46:00.521+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:46:00.533+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83036
2020-03-15T19:46:00.533+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:46:00.557+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:46:00.556+0200
2020-03-15T19:46:00.585+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:46:00.585+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin370461715 network=unix timestamp=2020-03-15T19:46:00.585+0200
2020-03-15T19:46:00.707+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83036
2020-03-15T19:46:00.707+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:46:00 [INFO] backend/local: plan calling Refresh
2020/03/15 19:46:00 [INFO] terraform: building graph: GraphTypeRefresh
2020/03/15 19:46:00 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodeRefreshableManagedResource) needs provider.aws
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:46:00 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:46:00 [DEBUG] Starting graph walk: walkRefresh
2020-03-15T19:46:00.708+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:46:00.730+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:46:00.743+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83037
2020-03-15T19:46:00.743+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:46:00.768+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:46:00.768+0200
2020-03-15T19:46:00.798+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:46:00.798+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin107781496 network=unix timestamp=2020-03-15T19:46:00.798+0200
2020-03-15T19:46:00.896+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:00 [INFO] No assume_role block read from configuration
2020-03-15T19:46:00.896+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:00 [INFO] Building AWS auth structure
2020-03-15T19:46:00.896+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:00 [INFO] Setting AWS metadata API timeout to 100ms
2020-03-15T19:46:02.289+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:02 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2020-03-15T19:46:02.290+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:02 [INFO] AWS Auth provider used: "SharedCredentialsProvider"
2020-03-15T19:46:02.290+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:02 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:02 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=8e39baf489aa95e570bcba68318b562c08b59abbac465a74fb1235bd04f0f974
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174602Z
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:46:02.291+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:02 GMT
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 351f3193-8f8c-4362-b873-e5a3221b9319
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:46:03.162+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>351f3193-8f8c-4362-b873-e5a3221b9319</RequestId>
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=bc4c763a804716ad5dc7badd9d64c00dfb89ffcd587320954179ab436d0af191
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174603Z
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:46:03.163+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:02 GMT
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 97143fdf-324d-42c3-b34e-d30ed4932252
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>97143fdf-324d-42c3-b34e-d30ed4932252</RequestId>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:46:03.918+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:03 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ec2.us-east-1.amazonaws.com
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 87
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=57ac3f9cb9c8f6f66023b8809e32ffcb08bdea1f62ff8f4d8832a910be114bb0
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174603Z
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2020-03-15T19:46:03.921+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 540
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml;charset=UTF-8
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:03 GMT
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Server: AmazonEC2
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <requestId>f9b41edf-87e0-43cd-9c52-eb6f79f5d322</requestId>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <accountAttributeSet>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         <item>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeName>supported-platforms</attributeName>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeValueSet>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 <item>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                     <attributeValue>VPC</attributeValue>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 </item>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             </attributeValueSet>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         </item>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     </accountAttributeSet>
2020-03-15T19:46:05.039+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </DescribeAccountAttributesResponse>
2020/03/15 19:46:05 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: []
2020-03-15T19:46:05.042+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/GetParameter Details:
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 75
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=1813b57817d3aa06cfe81b646b3f37e11ec3c75e13573bd9076299e542be0d3e
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174605Z
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.GetParameter
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"Name":"/test/terragrunt_issue_1087/dep/var-c-dep","WithDecryption":false}
2020-03-15T19:46:05.043+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/GetParameter Details:
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:05 GMT
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 049edbb7-e377-4e01-98c2-c8892b6637ac
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] [aws-sdk-go] {"Parameter":{"ARN":"arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-c-dep","DataType":"text","LastModifiedDate":1.584289610784E9,"Name":"/test/terragrunt_issue_1087/dep/var-c-dep","Type":"SecureString","Value":"AQICAHhSJYq9iB9ly88cN0396CLeEFYQ6sdoxjFyIPH6LZ/5NQG88jC/yU/7+q1MTkTXeOpyAAAAgzCBgAYJKoZIhvcNAQcGoHMwcQIBADBsBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDLNnEoPHZ+CVwBe2eQIBEIA/QWNDmgRn0e+QN12H5ZDfJ5mQwFFmj371+XO9PcxxvCcd3YoKgumsZlh9Q1yvNGAzfkm2B98cFQYq04Bx+XOZ","Version":1}}
2020-03-15T19:46:05.816+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] Reading SSM Parameter: /test/terragrunt_issue_1087/dep/var-c-dep
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:05 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/GetParameter Details:
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 74
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=a79ee64e6ca74c20fcc8907a3de684aff83e1bbbadf94125aeac7d441c48a800
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174605Z
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.GetParameter
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"Name":"/test/terragrunt_issue_1087/dep/var-c-dep","WithDecryption":true}
2020-03-15T19:46:05.817+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:06 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/GetParameter Details:
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:05 GMT
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 2e346a6e-9b74-485c-a188-d948db8df25e
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:06.468+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:06 [DEBUG] [aws-sdk-go] {"Parameter":{"ARN":"arn:aws:ssm:us-east-1:[REDUCTED]:parameter/test/terragrunt_issue_1087/dep/var-c-dep","DataType":"text","LastModifiedDate":1.584289610784E9,"Name":"/test/terragrunt_issue_1087/dep/var-c-dep","Type":"SecureString","Value":"b7b40a60-eb14-da09-9f18-a22342e29dd8","Version":1}}
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:06 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/DescribeParameters Details:
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 110
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=a4c3dfdc2427510560f10b965736cdc764b079c96fb229c975621434d8cd7a6d
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174606Z
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.DescribeParameters
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"ParameterFilters":[{"Key":"Name","Option":"Equals","Values":["/test/terragrunt_issue_1087/dep/var-c-dep"]}]}
2020-03-15T19:46:06.469+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/DescribeParameters Details:
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:11 GMT
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 0108f767-b645-4def-817e-ca44cd3655ae
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [DEBUG] [aws-sdk-go] {"Parameters":[{"DataType":"text","KeyId":"alias/aws/ssm","LastModifiedDate":1.584289610784E9,"LastModifiedUser":"arn:aws:iam::[REDUCTED]:user/example","Name":"/test/terragrunt_issue_1087/dep/var-c-dep","Policies":[],"Tier":"Standard","Type":"SecureString","Version":1}]}
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [DEBUG] [aws-sdk-go] DEBUG: Request ssm/ListTagsForResource Details:
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ssm.us-east-1.amazonaws.com
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 85
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ssm/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-target, Signature=b8cd078c8719b97056e74f5f645a88994301980dba5f9f2874544271096b5f1b
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174612Z
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Target: AmazonSSM.ListTagsForResource
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:12.088+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: {"ResourceId":"/test/terragrunt_issue_1087/dep/var-c-dep","ResourceType":"Parameter"}
2020-03-15T19:46:12.089+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:12.725+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [DEBUG] [aws-sdk-go] DEBUG: Response ssm/ListTagsForResource Details:
2020-03-15T19:46:12.725+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-amz-json-1.1
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:12 GMT
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: a32418b0-5c7a-47f9-9c6a-fa84be733224
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:12.726+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [DEBUG] [aws-sdk-go] {"TagList":[]}
2020-03-15T19:46:12.731+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83037
2020-03-15T19:46:12.731+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:46:12 [INFO] backend/local: plan calling Plan
2020/03/15 19:46:12 [INFO] terraform: building graph: GraphTypePlan
2020/03/15 19:46:12 [DEBUG] ProviderTransformer: "aws_ssm_parameter.this" (*terraform.NodePlannableResource) needs provider.aws
2020/03/15 19:46:12 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: [var.var_name]
2020/03/15 19:46:12 [DEBUG] ReferenceTransformer: "output.var_value" references: [aws_ssm_parameter.this]
2020/03/15 19:46:12 [DEBUG] ReferenceTransformer: "var.var_name" references: []
2020/03/15 19:46:12 [DEBUG] ReferenceTransformer: "provider.aws" references: []
2020/03/15 19:46:12 [DEBUG] Starting graph walk: walkPlan
2020-03-15T19:46:12.733+0200 [INFO]  plugin: configuring client automatic mTLS
2020-03-15T19:46:12.764+0200 [DEBUG] plugin: starting plugin: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 args=[/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4]
2020-03-15T19:46:12.777+0200 [DEBUG] plugin: plugin started: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83167
2020-03-15T19:46:12.777+0200 [DEBUG] plugin: waiting for RPC address: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4
2020-03-15T19:46:12.800+0200 [INFO]  plugin.terraform-provider-aws_v2.53.0_x4: configuring server automatic mTLS: timestamp=2020-03-15T19:46:12.800+0200
2020-03-15T19:46:12.831+0200 [DEBUG] plugin: using plugin: version=5
2020-03-15T19:46:12.831+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: plugin address: network=unix address=/var/folders/nw/hpgp1yr56r37fzyfmktt0mn40000gn/T/plugin146277498 timestamp=2020-03-15T19:46:12.831+0200
2020-03-15T19:46:12.932+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [INFO] No assume_role block read from configuration
2020-03-15T19:46:12.932+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [INFO] Building AWS auth structure
2020-03-15T19:46:12.932+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:12 [INFO] Setting AWS metadata API timeout to 100ms
2020-03-15T19:46:13.542+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:13 [INFO] Ignoring AWS metadata API endpoint at default location as it doesn't return any instance-id
2020-03-15T19:46:13.542+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:13 [INFO] AWS Auth provider used: "SharedCredentialsProvider"
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:13 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:13 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=719b5f9200447831dfb0848c8f2d6390e4162b845c50ac3b78b1a7f03a7fe502
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174613Z
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:46:13.543+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:14 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:13 GMT
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: f1ddd5ce-71db-4d11-9653-728452c21723
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:14 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>f1ddd5ce-71db-4d11-9653-728452c21723</RequestId>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:46:14.348+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:14 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:14 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: sts.amazonaws.com
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 43
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/sts/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=b99ab2c497fdf418a978b7ee8183a4da2595cd56bf8d30ecd1bb9008d0686cae
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174614Z
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=GetCallerIdentity&Version=2011-06-15
2020-03-15T19:46:14.349+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:15 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 402
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:14 GMT
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amzn-Requestid: 11131ab2-a103-4416-9ad3-50832122a97a
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:15 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <GetCallerIdentityResult>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Arn>arn:aws:iam::[REDUCTED]:user/example</Arn>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <UserId>AIDAQIHCFIKNEFDNJJEMH</UserId>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <Account>[REDUCTED]</Account>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </GetCallerIdentityResult>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   <ResponseMetadata>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <RequestId>11131ab2-a103-4416-9ad3-50832122a97a</RequestId>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:   </ResponseMetadata>
2020-03-15T19:46:15.062+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </GetCallerIdentityResponse>
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:15 [DEBUG] [aws-sdk-go] DEBUG: Request ec2/DescribeAccountAttributes Details:
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ REQUEST POST-SIGN ]-----------------------------
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: POST / HTTP/1.1
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Host: ec2.us-east-1.amazonaws.com
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: User-Agent: aws-sdk-go/1.29.20 (go1.13.7; darwin; amd64) APN/1.0 HashiCorp/1.0 Terraform/0.12.23 (+https://www.terraform.io)
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 87
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Authorization: AWS4-HMAC-SHA256 Credential=AKIAQIHCFIKNN7C6NPUS/20200315/us-east-1/ec2/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date, Signature=0bc8246054181d44aea766ca57a42b82bb16e1207785e205456513f0ffb81777
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: application/x-www-form-urlencoded; charset=utf-8
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: X-Amz-Date: 20200315T174615Z
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Accept-Encoding: gzip
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Action=DescribeAccountAttributes&AttributeName.1=supported-platforms&Version=2016-11-15
2020-03-15T19:46:15.064+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:15.973+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:15 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeAccountAttributes Details:
2020-03-15T19:46:15.973+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: ---[ RESPONSE ]--------------------------------------
2020-03-15T19:46:15.973+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: HTTP/1.1 200 OK
2020-03-15T19:46:15.973+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Connection: close
2020-03-15T19:46:15.973+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Length: 540
2020-03-15T19:46:15.973+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Content-Type: text/xml;charset=UTF-8
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Date: Sun, 15 Mar 2020 17:46:15 GMT
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: Server: AmazonEC2
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: -----------------------------------------------------
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: 2020/03/15 19:46:15 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: <DescribeAccountAttributesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <requestId>bf59a8c7-aebf-4962-81f0-ac111b2b6d9b</requestId>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     <accountAttributeSet>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         <item>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeName>supported-platforms</attributeName>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             <attributeValueSet>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 <item>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                     <attributeValue>VPC</attributeValue>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:                 </item>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:             </attributeValueSet>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:         </item>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4:     </accountAttributeSet>
2020-03-15T19:46:15.974+0200 [DEBUG] plugin.terraform-provider-aws_v2.53.0_x4: </DescribeAccountAttributesResponse>
2020/03/15 19:46:15 [DEBUG] ReferenceTransformer: "aws_ssm_parameter.this" references: []
2020-03-15T19:46:15.982+0200 [DEBUG] plugin: plugin process exited: path=/Users/example/code/.external/terragrunt_issue_1087/tg-files/dep/var-c-dep/.terragrunt-cache/ALAW-9qKrWFB6k-nU6L3O4aLABI/bQYZk3-HsFAyd3gqa0dF80ehSoE/tf-modules/ssm-test-dep/.terraform/plugins/darwin_amd64/terraform-provider-aws_v2.53.0_x4 pid=83167
2020-03-15T19:46:15.982+0200 [DEBUG] plugin: plugin exited
2020/03/15 19:46:15 [INFO] backend/local: plan operation completed

By the way (do not know if that is some correlation with my issue) - fetching of plugins takes huge amount of time (from minutes to hours)

@zelig81
Copy link
Author

zelig81 commented Mar 16, 2020

I found a workaround for the problem of waiting time for fetching plugins (.terraformrc with plugin_cache_dir).
Perhaps it solved me a problem of providers error - but it still looks like workaround...

@infraredgirl infraredgirl added p:needs triage Needs to be processed by maintainer and issue type / priority added and removed needs investigation labels Oct 20, 2021
@denis256 denis256 moved this to To do in Terragrunt Roadmap Aug 3, 2023
@joaocc
Copy link

joaocc commented Aug 24, 2023

Seems like #2542, #1212, and several other reports.
We have been having very serious impact on ability to run until we adopted the approach of a dummy-module that downloads all providers to cache (as per #1212 (comment)). We are using both TF_PLUGIN_CACHE_DIR and TERRAGRUNT_DOWNLOAD variables.
Still not 100% better, but improved.

@levkohimins
Copy link
Contributor

Resolved in v0.50.11 release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working p:needs triage Needs to be processed by maintainer and issue type / priority added
Projects
Development

Successfully merging a pull request may close this issue.

5 participants