Added terraform

This commit is contained in:
2020-04-25 20:03:46 +01:00
parent 5a1e9fa22c
commit 489e3779d3
6 changed files with 68 additions and 0 deletions

10
terraform/state.tf Normal file
View File

@@ -0,0 +1,10 @@
terraform {
backend "s3" {
bucket = "cluster.fun-tfstate"
key = "state.tfstate"
region = "fr-par"
endpoint = "https://s3.fr-par.scw.cloud"
skip_credentials_validation = true
skip_region_validation = true
}
}