├── .gitignore ├── LICENSE ├── README.md ├── operator-workspace ├── .terraform.lock.hcl ├── main.tf ├── terraform.tf └── variables.tf └── vault-admin-workspace ├── .terraform.lock.hcl ├── main.tf ├── outputs.tf ├── terraform.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/README.md -------------------------------------------------------------------------------- /operator-workspace/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/operator-workspace/.terraform.lock.hcl -------------------------------------------------------------------------------- /operator-workspace/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/operator-workspace/main.tf -------------------------------------------------------------------------------- /operator-workspace/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/operator-workspace/terraform.tf -------------------------------------------------------------------------------- /operator-workspace/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/operator-workspace/variables.tf -------------------------------------------------------------------------------- /vault-admin-workspace/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/vault-admin-workspace/.terraform.lock.hcl -------------------------------------------------------------------------------- /vault-admin-workspace/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/vault-admin-workspace/main.tf -------------------------------------------------------------------------------- /vault-admin-workspace/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/vault-admin-workspace/outputs.tf -------------------------------------------------------------------------------- /vault-admin-workspace/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/vault-admin-workspace/terraform.tf -------------------------------------------------------------------------------- /vault-admin-workspace/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-inject-secrets-aws-vault/HEAD/vault-admin-workspace/variables.tf --------------------------------------------------------------------------------