mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-07 18:00:45 -05:00
20 lines
521 B
Plaintext
20 lines
521 B
Plaintext
# tfcoremock_simple_resource.json:
|
|
resource "tfcoremock_simple_resource" "json" {
|
|
id = "5a3fd9b3-e852-8956-8c0a-255d47eda645"
|
|
string = jsonencode(
|
|
{
|
|
list-attribute = [
|
|
"one",
|
|
"four",
|
|
"three",
|
|
]
|
|
object-attribute = {
|
|
key_four = "value_three"
|
|
key_one = "value_one"
|
|
key_three = "value_two"
|
|
}
|
|
string-attribute = "a new string"
|
|
}
|
|
)
|
|
}
|