├── .terraform-version ├── README.md ├── infra-live ├── .tfgen.yaml ├── dev │ ├── .tfgen.yaml │ ├── networking │ │ └── vpc │ │ │ └── main.tf │ ├── s3 │ │ └── dev-example-bucket │ │ │ └── main.tf │ ├── security │ │ └── iam │ │ │ ├── roles │ │ │ └── main.tf │ │ │ └── users │ │ │ └── main.tf │ └── stacks │ │ └── app-1 │ │ └── main.tf └── prod │ ├── .tfgen.yaml │ ├── networking │ └── vpc │ │ └── main.tf │ ├── s3 │ └── prod-example-bucket │ │ └── main.tf │ ├── security │ └── iam │ │ ├── roles │ │ └── main.tf │ │ └── users │ │ └── main.tf │ └── stacks │ └── app-1 │ └── main.tf └── modules └── my-custom-module └── main.tf /.terraform-version: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDones/terraform-monorepo-example/HEAD/README.md -------------------------------------------------------------------------------- /infra-live/.tfgen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDones/terraform-monorepo-example/HEAD/infra-live/.tfgen.yaml -------------------------------------------------------------------------------- /infra-live/dev/.tfgen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDones/terraform-monorepo-example/HEAD/infra-live/dev/.tfgen.yaml -------------------------------------------------------------------------------- /infra-live/dev/networking/vpc/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/dev/s3/dev-example-bucket/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/dev/security/iam/roles/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/dev/security/iam/users/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/dev/stacks/app-1/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/prod/.tfgen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDones/terraform-monorepo-example/HEAD/infra-live/prod/.tfgen.yaml -------------------------------------------------------------------------------- /infra-live/prod/networking/vpc/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/prod/s3/prod-example-bucket/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/prod/security/iam/roles/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/prod/security/iam/users/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra-live/prod/stacks/app-1/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/my-custom-module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDones/terraform-monorepo-example/HEAD/modules/my-custom-module/main.tf --------------------------------------------------------------------------------