update
Some checks failed
terraform validation / Terraform (push) Failing after 8s

This commit is contained in:
2025-01-13 20:43:15 +01:00
parent 45f7421295
commit d76cae78e9
14 changed files with 169 additions and 54 deletions

13
backend.tf Normal file
View File

@@ -0,0 +1,13 @@
terraform {
required_version = "~> 0.12.0"
backend "remote" {
hostname = "app.terraform.io"
organization = "example"
token = "xxxxxxxx"
workspaces {
name = "prod"
}
}
}