File: main.tf

package info (click to toggle)
golang-github-hashicorp-terraform-json 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,572 kB
  • sloc: makefile: 31
file content (13 lines) | stat: -rw-r--r-- 146 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
variable "bar" {
  type = "string"
}

variable "one" {
  type = "string"
}

resource "null_resource" "foo" {
  triggers = {
    foo = "bar"
  }
}