Skip to content

Commit

Permalink
Add AAAA to Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Linden committed Feb 18, 2021
1 parent c45690d commit 3ff7b4d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ module "route_53" {
|------|-------------|------|---------|:--------:|
| a\_alias\_records | map of objects for A alias records | <pre>map(object({<br> name = string<br> record = string<br> zone_id = string<br> }))</pre> | `{}` | no |
| a\_records | map of objects for A records | <pre>map(object({<br> name = string<br> records = list(string)<br> }))</pre> | `{}` | no |
| aaaa\_alias\_records | map of objects for AAAA alias records | <pre>map(object({<br> name = string<br> record = string<br> zone_id = string<br> }))</pre> | `{}` | no |
| aaaa\_records | map of objects for AAAA records | <pre>map(object({<br> name = string<br> records = list(string)<br> }))</pre> | `{}` | no |
| cname\_records | map of objects for CNAME records | <pre>map(object({<br> name = string<br> records = list(string)<br> }))</pre> | `{}` | no |
| mx\_records | list of mx records with weight | `list(string)` | `[]` | no |
| ns\_records | map of objects for NS records | <pre>map(object({<br> name = string<br> records = list(string)<br> }))</pre> | `{}` | no |
Expand All @@ -127,6 +129,8 @@ module "route_53" {
|------|-------------|
| a\_alias\_records | n/a |
| a\_records | n/a |
| aaaa\_alias\_records | n/a |
| aaaa\_records | n/a |
| cname\_records | n/a |
| mx\_records | n/a |
| srv\_records | n/a |
Expand Down
19 changes: 19 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ variable "a_records" {
default = {}
}

variable "aaaa_records" {
type = map(object({
name = string
records = list(string)
}))
description = "map of objects for AAAA records"
default = {}
}

variable "a_alias_records" {
type = map(object({
name = string
Expand All @@ -17,6 +26,16 @@ variable "a_alias_records" {
default = {}
}

variable "aaaa_alias_records" {
type = map(object({
name = string
record = string
zone_id = string
}))
description = "map of objects for AAAA alias records"
default = {}
}

variable "cname_records" {
type = map(object({
name = string
Expand Down

0 comments on commit 3ff7b4d

Please sign in to comment.