mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Merge pull request #22068 from a-hat/master
fix example config for terraform >= 0.12
This commit is contained in:
commit
be47a1e11c
@ -25,6 +25,13 @@ data "terraform_remote_state" "vpc" {
|
||||
}
|
||||
}
|
||||
|
||||
# Terraform >= 0.12
|
||||
resource "aws_instance" "foo" {
|
||||
# ...
|
||||
subnet_id = data.terraform_remote_state.vpc.outputs.subnet_id
|
||||
}
|
||||
|
||||
# Terraform <= 0.11
|
||||
resource "aws_instance" "foo" {
|
||||
# ...
|
||||
subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
|
||||
|
Loading…
Reference in New Issue
Block a user