mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-09 00:22:36 -04:00
7 lines
102 B
HCL
7 lines
102 B
HCL
resource "aws_instance" "a" {
|
|
require_new = "new"
|
|
}
|
|
|
|
output "ids" {
|
|
value = [aws_instance.a.id]
|
|
}
|