gitextract_c_xm77iv/ ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── .tflint.hcl ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── .terraform-docs-example.yaml │ └── .terraform-docs.yaml ├── main.tf ├── modules/ │ ├── base/ │ │ ├── .terraform-docs.yaml │ │ ├── README.md │ │ ├── humanitec.tf │ │ ├── main.tf │ │ ├── meta.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ ├── terraform.tfvars.example │ │ └── variables.tf │ ├── github/ │ │ ├── README.md │ │ ├── aws.tf │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── terraform.tfvars.example │ │ └── variables.tf │ └── portal-backstage/ │ ├── README.md │ ├── main.tf │ ├── providers.tf │ ├── terraform.tfvars.example │ └── variables.tf ├── providers.tf ├── terraform.tfvars.example └── variables.tf