diff --git a/examples/sandbox/main.tf b/examples/sandbox/main.tf deleted file mode 100644 index 2551ea2..0000000 --- a/examples/sandbox/main.tf +++ /dev/null @@ -1,45 +0,0 @@ -provider "google-beta" { - region = "${var.region}" -} - -variable "region" { - default = "europe-north1" -} - -variable "project" { - default = "petri-sandbox" -} - -variable "endpoints" { - type = "list" - default = ["192.168.11.1", "192.168.11.2"] -} - -data "template_file" "single_ip" { - count = "${length(var.endpoints)}" - template = <