mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-16 07:01:11 -05:00
13 lines
227 B
HCL
13 lines
227 B
HCL
resource "aws_instance" "blue" { }
|
|
resource "aws_instance" "green" { }
|
|
|
|
module "blue_mod" {
|
|
source = "./child"
|
|
id = "${aws_instance.blue.id}"
|
|
}
|
|
|
|
module "green_mod" {
|
|
source = "./child"
|
|
id = "${aws_instance.green.id}"
|
|
}
|