0
0
llucycodes42
This code creates a Google Compute Project metadata object. In the metadata object, the foo property has the value "bar", the fizz property has the value "buzz", and the 13 property has the value "42".
Shortcut: tf_google_compute_project_metadata
resource "google_compute_project_metadata" "${MyResource}" {
metadata {
foo = "bar"
fizz = "buzz"
13 = "42"
}
}