private-dns-zone

Gbon1275/private-dns-zone/azurerm

Terraform Module HCL AZURERM
Install
module "private-dns-zone" {
source = "Gbon1275/private-dns-zone/azurerm"
version = "0.1.0"
}
plain text: /constructs/tfmod-gbon1275-private-dns-zone-azurerm/install.txt
⭐ Source on GitHub 📦 Registry page
README

Azure Private DNS Module !Maintenance !Terraform Version !Version Description This terraform module will create a private dns zone and populate it with records Features - Will create a new or update an existing azure private dns zone. Requirements To use this module you will need to have terraform installed. Examples `` "domain_name" = "Example.com" "subscription_id" = "0000000000000000000" "a_records" [ { name = "www" ttl = 3600 value = ["192.0.2.56"] }, { name = "www" ttl = 3600 value = ["192.0.2.56"] } ] "mx_records" { [ name = "mail" ttl = 3600 priority = 10 value = "mail1" }, { name = "@" ttl = 3600 prority = 20 value = "mail1" } ] "cname_records" { { name = "example" ttl = 3600 value = "example.com" }, { name = "example" ttl = 3600 value = "example.com" }, } "srv_records" [ { name =

Inputs (9)
NameTypeDescriptionDefault
ptr_recordslist(object({ name = sList of PTR records. required
resource_group_namestringName of the resource group where the resourtce will be held required
cname_recordslist(object({ name = sList of CNAME records. required
srv_recordslist(object({ name = sList of SRV records required
txt_recordslist(object({ name = sList of TXT records required
subscription_idstringID of Azure Suscription required
domain_namestringName of Domain you want to use required
a_recordslist(object({ name = sList of A records. required
mx_recordslist(object({ name = sList of MX Records. required
Outputs (1)
Private_DNS_Zone — Name of Zone that has just been deployed
Resources (7)
azurerm_private_dns_a_recordazurerm_private_dns_cname_recordazurerm_private_dns_mx_recordazurerm_private_dns_ptr_recordazurerm_private_dns_srv_recordazurerm_private_dns_txt_recordazurerm_private_dns_zone
Topics & Tags
terraformdnsazure
Details
FrameworkTerraform Module
LanguageHCL
Version0.1.0
Cloud AZURERM
★ Stars0
Forks0
Total downloads3.4k
Inputs9
Outputs1
Resources7
NamespaceGbon1275
Updated