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

     1  terraform {
     2    backend "foo" {
     3      path = "relative/path/to/terraform.tfstate"
     4    }
     5  }
     6  
     7  resource "aws_instance" "web" {
     8    ami = "ami-1234"
     9    security_groups = [
    10      "foo",
    11      "bar",
    12    ]
    13  }