mirror of
https://github.com/Telecominfraproject/wlan-toolsmith.git
synced 2025-10-29 18:12:20 +00:00
fix formatting of Terraform files
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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"
|
||||
@@ -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 = [""]
|
||||
}
|
||||
Reference in New Issue
Block a user