github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/testing/equivalence-tests/tests/simple_object_update/main.tf (about)

     1  terraform {
     2    required_providers {
     3      tfcoremock = {
     4        source  = "hashicorp/tfcoremock"
     5        version = "0.1.1"
     6      }
     7    }
     8  }
     9  
    10  provider "tfcoremock" {}
    11  
    12  resource "tfcoremock_object" "object" {
    13    object = {
    14      string  = "Hello, a totally different world!"
    15      boolean = false
    16      number  = 2
    17    }
    18  }