mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-10 03:01:56 -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.
13 lines
182 B
HCL
13 lines
182 B
HCL
terraform {
|
|
required_providers {
|
|
null = {
|
|
source = "hashicorp/null"
|
|
version = "3.1.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "null" {}
|
|
|
|
resource "null_resource" "null_resource" {}
|