mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
7 lines
106 B
HCL
7 lines
106 B
HCL
// This is a comment
|
|
resource "aws_instance" "test" {
|
|
user_data = <<HEREDOC
|
|
test script
|
|
HEREDOC
|
|
}
|