mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-31 18:02:48 -04:00
13 lines
196 B
HCL
13 lines
196 B
HCL
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
provider "aws_elb" {
|
|
foo = "baz"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {}
|
|
resource "aws_instance" "bar" {}
|
|
resource "aws_elb" "lb" {}
|
|
resource "do_droplet" "bar" {}
|