mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-03 17:38:49 +00:00
* add web_templates render tests * add ansic strip tests * move fixtures into testdata dir which is golang specific test dir name * add server/metrics tests * add recovery test * add runtime stats test
19 lines
259 B
HCL
19 lines
259 B
HCL
resource "null_resource" "simple" {
|
|
count = 1
|
|
}
|
|
|
|
resource "null_resource" "simple2" {}
|
|
resource "null_resource" "simple3" {}
|
|
|
|
variable "var" {
|
|
default = "default"
|
|
}
|
|
|
|
output "var" {
|
|
value = var.var
|
|
}
|
|
|
|
output "workspace" {
|
|
value = terraform.workspace
|
|
}
|