Skip to content

Commit

Permalink
Merge pull request #19 from babbel/unify-variables
Browse files Browse the repository at this point in the history
Unify structure of module variables
  • Loading branch information
jansiwy authored Sep 23, 2024
2 parents 436fbcc + 9e5a302 commit c13213b
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
variable "primary_domain_name" {
description = "A domain name for which the certificate should be issued"
type = string
variable "domain_names_to_zone_ids" {
type = map(string)

description = <<EOS
Map of domain names (incl. `var.primary_domain_name`) to Route53 hosted zone IDs.
EOS
}

variable "domain_names_to_zone_ids" {
description = "Map of domain names (incl. `var.primary_domain_name`) to Route53 hosted zone IDs"
type = map(string)
variable "primary_domain_name" {
type = string

description = <<EOS
A domain name for which the certificate should be issued.
EOS
}

variable "tags" {
description = "A mapping of tags to assign to the resource"
type = map(string)
default = {}
type = map(string)
default = {}

description = <<EOS
Map of tags assigned to all AWS resources created by this module.
EOS
}

0 comments on commit c13213b

Please sign in to comment.