diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 15:50:41 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-04 15:50:41 +0200 |
commit | f484c322b1e1e8c2c0fb7d7f10e80ec9afc400e5 (patch) | |
tree | 9716d8ddc273443c1e30c104e00e3a355e52b24b /digitalocean/domain/variables.tf | |
parent | digitalocean/firewall: open ports for UDP also (diff) | |
download | infra-terraform-f484c322b1e1e8c2c0fb7d7f10e80ec9afc400e5.tar.gz infra-terraform-f484c322b1e1e8c2c0fb7d7f10e80ec9afc400e5.zip |
digitalocean/domain: support CNAME aliasesv0.0.5
Diffstat (limited to 'digitalocean/domain/variables.tf')
-rw-r--r-- | digitalocean/domain/variables.tf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/digitalocean/domain/variables.tf b/digitalocean/domain/variables.tf index bcff122..0d49ec4 100644 --- a/digitalocean/domain/variables.tf +++ b/digitalocean/domain/variables.tf @@ -8,3 +8,8 @@ variable "name" { variable "ip_address" { type = string } + +variable "aliases" { + type = list(string) + default = [] +} |