mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 10:00:09 -04:00
18 lines
301 B
HCL
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
|
|
}
|
|
}
|