github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/configs/testdata/valid-modules/override-cloud/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  }