fix formatting of Terraform files

This commit is contained in:
Max Brenner
2020-12-16 11:28:45 +01:00
parent caa2f8062f
commit ded66b8b92
3 changed files with 11 additions and 11 deletions

View File

@@ -29,18 +29,18 @@ module "acm" {
providers = {
aws = aws.acm
}
source = "git::https://github.com/terraform-aws-modules/terraform-aws-acm?ref=v2.9.0"
source = "git::https://github.com/terraform-aws-modules/terraform-aws-acm?ref=v2.9.0"
domain_name = var.main_zone_name
zone_id = aws_route53_zone.main.zone_id
domain_name = var.main_zone_name
zone_id = aws_route53_zone.main.zone_id
subject_alternative_names = [
"*.${var.main_zone_name}"
]
tags = {
eks = true
cloudsdk = true
eks = true
cloudsdk = true
}
}

View File

@@ -1,4 +1,4 @@
main_zone_name = "lab.wlan.tip.build"
aws_region = "us-east-1"
aws_region = "us-east-1"
aws_acm_region = "us-east-2"

View File

@@ -4,7 +4,7 @@ variable "aws_region" {
}
variable "vpc_cidr" {
type = string
type = string
default = ""
}
@@ -49,12 +49,12 @@ variable "cluster_name" {
variable "public_subnets" {
description = "List of public subnet ids"
type = set(string)
default = [""]
type = set(string)
default = [""]
}
variable "private_subnets" {
description = "List of private subnet ids"
type = set(string)
default = [""]
type = set(string)
default = [""]
}