mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 16:36:26 -06:00
8 lines
102 B
HCL
8 lines
102 B
HCL
resource "aws_instance" "a" {
|
|
require_new = "new"
|
|
}
|
|
|
|
output "ids" {
|
|
value = [aws_instance.a.id]
|
|
}
|