mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-07 12:02:04 -04:00
12 lines
174 B
HCL
12 lines
174 B
HCL
data "aws_subnet" "bar" {
|
|
vpc_id = "abc"
|
|
cidr_block = "10.0.1.0/24"
|
|
}
|
|
|
|
import {
|
|
to = aws_subnet.bar
|
|
id = data.aws_subnet.bar.id
|
|
}
|
|
|
|
resource "aws_subnet" "bar" {}
|