mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
82b5cfad7e
* 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
27 lines
442 B
HCL
27 lines
442 B
HCL
terraform {
|
|
required_providers {
|
|
tfcoremock = {
|
|
source = "hashicorp/tfcoremock"
|
|
version = "0.1.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "tfcoremock" {}
|
|
|
|
resource "tfcoremock_set" "set" {
|
|
id = "F40F2AB4-100C-4AE8-BFD0-BF332A158415"
|
|
|
|
set = [
|
|
{
|
|
id = "3BFC1A84-023F-44FA-A8EE-EFD88E18B8F7"
|
|
},
|
|
{
|
|
id = "07F887E2-FDFF-4B2E-9BFB-B6AA4A05EDB9"
|
|
},
|
|
{
|
|
id = "4B7178A8-AB9D-4FF4-8B3D-48B754DE537B"
|
|
},
|
|
]
|
|
}
|