github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/configs/testdata/invalid-modules/override-cloud-duplicates/main.tf (about)

     1  terraform {
     2    cloud {
     3      organization = "foo"
     4      should_not_be_present_with_override = true
     5    }
     6  }
     7  
     8  resource "aws_instance" "web" {
     9    ami = "ami-1234"
    10    security_groups = [
    11      "foo",
    12      "bar",
    13    ]
    14  }