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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
For block with more than source and version, after the swap the indentation maybe incorrect resulting in a lint error:
module "gce-lb-https" { project = var.project source = "terraform-google-modules/lb-http/google" version = "~> 10.0"
module "gce-lb-https" { project = var.project source = "../.." # [restore-marker] source = "terraform-google-modules/lb-http/google"
A quick fix is to break up the block:
module "gce-lb-https" { source = "terraform-google-modules/lb-http/google" version = "~> 10.0" project = var.project
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.
No branches or pull requests
For block with more than source and version, after the swap the indentation maybe incorrect resulting in a lint error:
A quick fix is to break up the block:
The text was updated successfully, but these errors were encountered: