Michael O'Brien
Michael O'Brien
We are seeing the same performance issue on the client mostly inside a vagrant VM for some developers (double clicking and dragging nodes with 20+ relationships). I develop on a...
1-org tf plan check step 9 requires a 0-bootstrap plan check on backend validation errors - due to terraform 1.3.0 (docker) and 1.7.4 (console) mismatch - may require console terraform...
TF Versions Cloud Build via Dockerfile is 1.3.0 https://github.com/terraform-google-modules/terraform-example-foundation/blob/master/0-bootstrap/Dockerfile#L18 ``` ARG TERRAFORM_VERSION=1.3.0 ``` GCP console as of 202403 is 1.7.4 ``` michael@cloudshell:~/tef-olapp/github/gcp-org (tef-olapp)$ terraform --version Terraform v1.7.4 on linux_amd64 ```
for change tracking post terraform 1.3.0 follow https://github.com/terraform-google-modules/terraform-example-foundation/pull/831 https://github.com/terraform-google-modules/terraform-example-foundation/pull/1003/files
Update: should have followed the warning around 1.3.0 in https://github.com/terraform-google-modules/terraform-example-foundation/pull/831/files https://github.com/terraform-google-modules/terraform-example-foundation/blob/master/0-bootstrap/README.md#prerequisites Note: Make sure that you use version 1.3.0 of Terraform throughout this series. Otherwise, you might experience Terraform state...
## Terraform local downgrade procedure - OSX (watch the sh line endings) - do windows 11 as well get 1.3 https://releases.hashicorp.com/terraform/ https://releases.hashicorp.com/terraform/1.3.0/ https://releases.hashicorp.com/terraform/1.3.0/terraform_1.3.0_darwin_arm64.zip ``` drop terraform binary into a path...
The validation script needs to be updated https://github.com/terraform-google-modules/terraform-example-foundation/blob/master/scripts/validate-requirements.sh#L94 ``` TF_VERSION="1.3.0" ... TERRAFORM_CURRENT_VERSION=$(terraform version -json | jq -r .terraform_version) if [ "$(compare_version "$TERRAFORM_CURRENT_VERSION" "$TF_VERSION")" -gt 1 ]; then echo_wrong_version "Terraform" "greater...
- 2 symlinks modified in error during the non-production to nonproduction rename/refactor - the change is to ../common - which itself is a symlink so the double symlink works. The...
Verified 0-bootstrap - working fine with the normal terraform init/plan/apply see #940
Workaround - turn off regional restriction on the project - or delete it on the parent and the rerun a terraform apply to get it back after ``` admin_@cloudshell:~/cloudshell_open (gr-bootstrap-ggz)$...