mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-31 11:17:25 -06:00
860140074f
This allows the config loader to read "data" blocks from the config and turn them into DataSource objects. This just reads the data from the config file. It doesn't validate the data nor do anything useful with it.
25 lines
411 B
HCL
25 lines
411 B
HCL
provider "do" {
|
|
api_key = "${var.foo}"
|
|
}
|
|
|
|
data "do" "depends" {
|
|
depends_on = ["data.do.simple"]
|
|
}
|
|
|
|
resource "aws_security_group" "firewall" {
|
|
count = 5
|
|
}
|
|
|
|
resource aws_instance "web" {
|
|
ami = "${var.foo}"
|
|
security_groups = [
|
|
"foo",
|
|
"${aws_security_group.firewall.foo}"
|
|
]
|
|
|
|
network_interface {
|
|
device_index = 0
|
|
description = "Main network interface"
|
|
}
|
|
}
|