12345678910111213141516171819 |
- .
- ├── modules/
- │ ├── ec2/
- │ │ ├── outputs.tf
- │ │ ├── terraform.tf
- │ │ ├── userdata.sh
- │ │ └── variables.tf
- │ └── vpc/
- │ ├── outputs.tf
- │ ├── terraform.tf
- │ └── variables.tf
- ├── .gitignore
- ├── .terraform.lock.hcl
- ├── outputs.tf
- ├── provider.tf
- ├── README.md
- ├── terraform.tf
- ├── terraform.tfvars
- └── variables.tf
|