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