mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 03:32:54 -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" {}
|