mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-26 16:47:56 -04:00
* 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
14 lines
233 B
HCL
14 lines
233 B
HCL
terraform {
|
|
required_providers {
|
|
tfcoremock = {
|
|
source = "hashicorp/tfcoremock"
|
|
version = "0.1.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "tfcoremock" {}
|
|
|
|
resource "tfcoremock_simple_resource" "drift" {
|
|
string = "Hello, world!"
|
|
}
|