mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06: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" {}
|