mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 10:00:09 -04:00
* add some basic equivalence tests and execute them in the build pipeline * remove old file, now unused * update terraform-equivalence-testing to v0.2.0 * add separate action * make sure to read from hashicorp repo * remove elevated github token where possible * Don't need elevated token anymore * update with official mock provider * last change: don't need the authorization header for public repositories.
21 lines
300 B
HCL
21 lines
300 B
HCL
terraform {
|
|
required_providers {
|
|
local = {
|
|
source = "hashicorp/local"
|
|
version = "2.2.3"
|
|
}
|
|
}
|
|
}
|
|
|
|
locals {
|
|
contents = jsonencode({
|
|
"hello" = "world"
|
|
})
|
|
}
|
|
|
|
provider "local" {}
|
|
|
|
resource "local_file" "local_file" {
|
|
filename = "output.json"
|
|
content = local.contents
|
|
}
|