Files
opentf/testing/equivalence-tests/tests/basic_multiline_string_update/main.tf
Liam Cervante 82b5cfad7e Add more equivalence tests that are testing edge cases around the new structured renderer (#32538)
* add test cases

* run equivalence tests

* delete old outputs

* drift_relevant_attributes should ignore the number attribute

* also add a test for data reads

* test destroy only
2023-01-20 09:31:11 +01:00

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"
}