Skip to content

Commit

Permalink
fixes_for_vars
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 30, 2024
1 parent 5db3004 commit 4f261dd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dns_zones.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
vpc_domain_name = coalesce(var.domain, var.vpc_domain_name)
vpc_domain_name = var.vpc_domain_name
cluster_domain_name = format("%v.%v", var.cluster_name, local.vpc_domain_name)
cluster_domain_description = format("%v EKS Cluster DNS Zone", var.cluster_name)
}
Expand Down
12 changes: 12 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ variable "aws_environment" {
default = ""
}

variable "os_username" {
description = "OS username from environment variable, ideally as $USER"
type = string
default = null
}

###################################################################
# DNS variables
###################################################################
Expand All @@ -144,6 +150,12 @@ variable "main_dns_profile" {
# default = ""
# }

variable "shared_vpc_label" {
description = "Label to use for shared VPC for flowlogs and other things"
type = string
default = null
}

variable "region_map" {
description = "AWS region map"
type = map(string)
Expand Down

0 comments on commit 4f261dd

Please sign in to comment.