mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-13 16:00:34 -05:00
15 lines
257 B
HCL
15 lines
257 B
HCL
terraform {
|
|
required_providers {
|
|
tfcoremock = {
|
|
source = "hashicorp/tfcoremock"
|
|
version = "0.1.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "tfcoremock" {}
|
|
|
|
resource "tfcoremock_simple_resource" "multiline" {
|
|
string = "one\nthree\ntwo\nfour\nsix\nseven"
|
|
}
|