feat: add loadbalancers, cthulhunetes domain, node hostnames, terraform backend, init terraform
This commit is contained in:
parent
41a4c2ef5d
commit
5a135cacf3
6 changed files with 304 additions and 0 deletions
10
terraform/backend.tf
Normal file
10
terraform/backend.tf
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
terraform {
|
||||
backend "s3" {
|
||||
bucket = "cthulhunetes--terraform-state"
|
||||
key = "terraform.tfstate"
|
||||
region = "eu-west-1"
|
||||
encrypt = true
|
||||
kms_key_id = "alias/cthulhunetes-key"
|
||||
dynamodb_table = "cthulhunetes--terraform-state"
|
||||
}
|
||||
}
|
||||
Reference in a new issue