We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The resource random_string named cluster_service_account_suffix can be created conditionally by using the var.create_service_account boolean flag.
No response
The code should be the following: sa.tf file/line 34: resource "random_string" "cluster_service_account_suffix" { count = var.create_service_account ? 1 : 0 upper = false lower = true special = false length = 4 }
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days
Sorry, something went wrong.
random_string
Successfully merging a pull request may close this issue.
TL;DR
The resource random_string named cluster_service_account_suffix can be created conditionally by using the var.create_service_account boolean flag.
Terraform Resources
No response
Detailed design
Additional information
No response
The text was updated successfully, but these errors were encountered: