terraform/testing/equivalence-tests/tests/simple_object_update/main.tf
2022-11-29 12:36:52 +01:00

18 lines
301 B
HCL

terraform {
required_providers {
tfcoremock = {
source = "hashicorp/tfcoremock"
version = "0.1.1"
}
}
}
provider "tfcoremock" {}
resource "tfcoremock_object" "object" {
object = {
string = "Hello, a totally different world!"
boolean = false
number = 2
}
}