From 065249b9649b2b65908c0c41ac351ec45d2a66cc Mon Sep 17 00:00:00 2001 From: Petri Autero Date: Tue, 5 Feb 2019 19:36:09 +0200 Subject: [PATCH] Delete sandbox --- examples/sandbox/main.tf | 45 ---------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 examples/sandbox/main.tf 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 = <