github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/internal/configs/testdata/valid-modules/override-backend/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  }