├── .gitignore ├── .terraform.lock.hcl ├── LICENSE ├── README.md ├── main.tf ├── outputs.tf └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/.gitignore -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/outputs.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-aws-assume-role-iam/HEAD/versions.tf --------------------------------------------------------------------------------