Initial commit

This commit is contained in:
Vassiliy Yegorov
2019-07-13 10:50:20 +07:00
commit 941b13aa49
20 changed files with 1148 additions and 0 deletions

20
provider.tf Normal file
View File

@@ -0,0 +1,20 @@
provider "google" {
project = var.project
region = var.region
}
provider "aws" {
access_key = "${var.access_key}"
secret_key = "${var.secret_key}"
region = "${var.region_aws}"
}
#===============================================
# Bucket for .tfstate files - remote save
#===============================================
terraform {
backend "gcs" {
bucket = "indigo-medium-242214-tf-state-prod"
prefix = "test/zabbix-app"
}
}