├── .gitignore ├── google-consul-module └── main.tf ├── google-consul ├── main.tf ├── output.tf ├── scripts │ ├── get-metadata-gce.sh │ ├── install-deps.sh │ ├── shutdown.sh │ ├── startup.sh │ └── ui-startup.sh └── variables.tf ├── google-two-tier-scalable ├── README.md ├── main.tf ├── output.tf ├── terraform.tfvars.example └── variables.tf └── google-two-tier-simple ├── README.md ├── main.tf ├── output.tf ├── terraform.tfvars.example └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /google-consul-module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul-module/main.tf -------------------------------------------------------------------------------- /google-consul/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/main.tf -------------------------------------------------------------------------------- /google-consul/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/output.tf -------------------------------------------------------------------------------- /google-consul/scripts/get-metadata-gce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/scripts/get-metadata-gce.sh -------------------------------------------------------------------------------- /google-consul/scripts/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/scripts/install-deps.sh -------------------------------------------------------------------------------- /google-consul/scripts/shutdown.sh: -------------------------------------------------------------------------------- 1 | consul leave 2 | -------------------------------------------------------------------------------- /google-consul/scripts/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/scripts/startup.sh -------------------------------------------------------------------------------- /google-consul/scripts/ui-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/scripts/ui-startup.sh -------------------------------------------------------------------------------- /google-consul/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-consul/variables.tf -------------------------------------------------------------------------------- /google-two-tier-scalable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-scalable/README.md -------------------------------------------------------------------------------- /google-two-tier-scalable/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-scalable/main.tf -------------------------------------------------------------------------------- /google-two-tier-scalable/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-scalable/output.tf -------------------------------------------------------------------------------- /google-two-tier-scalable/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-scalable/terraform.tfvars.example -------------------------------------------------------------------------------- /google-two-tier-scalable/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-scalable/variables.tf -------------------------------------------------------------------------------- /google-two-tier-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-simple/README.md -------------------------------------------------------------------------------- /google-two-tier-simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-simple/main.tf -------------------------------------------------------------------------------- /google-two-tier-simple/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-simple/output.tf -------------------------------------------------------------------------------- /google-two-tier-simple/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-simple/terraform.tfvars.example -------------------------------------------------------------------------------- /google-two-tier-simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radeksimko/terraform-examples/HEAD/google-two-tier-simple/variables.tf --------------------------------------------------------------------------------