mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
13 lines
338 B
Plaintext
13 lines
338 B
Plaintext
# local_file.local_file:
|
|
resource "local_file" "local_file" {
|
|
content = jsonencode(
|
|
{
|
|
goodbye = "world"
|
|
}
|
|
)
|
|
directory_permission = "0777"
|
|
file_permission = "0777"
|
|
filename = "output.json"
|
|
id = "648a5452054fca119f95b07f9ea992cc6d9681df"
|
|
}
|