Skip to content

Commit

Permalink
update due to new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Deutsche Telekom MMS committed Nov 15, 2024
1 parent 33c79d0 commit bb99a4f
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [2.0.3](https://github.com/telekom-mms/terraform-azurerm-dns/tree/2.0.3) (2024-11-15)

[Full Changelog](https://github.com/telekom-mms/terraform-azurerm-dns/compare/2.0.2...2.0.3)

**Implemented enhancements:**

- More private dns resources [\#26](https://github.com/telekom-mms/terraform-azurerm-dns/pull/26) ([habr-mms](https://github.com/habr-mms))

## [2.0.2](https://github.com/telekom-mms/terraform-azurerm-dns/tree/2.0.2) (2024-08-28)

[Full Changelog](https://github.com/telekom-mms/terraform-azurerm-dns/compare/2.0.1...2.0.2)
Expand Down
113 changes: 112 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<!-- BEGIN_TF_DOCS -->
# dns

This module manages the hashicorp/azurerm dns resources.
This module manages the hashicorp/azurerm dns and private dns resources.
For more information see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs > dns
and https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs > private dns

_<-- This file is autogenerated, please do not change. -->_

Expand All @@ -28,6 +29,10 @@ _<-- This file is autogenerated, please do not change. -->_
| azurerm_dns_mx_record.dns_mx_record | resource |
| azurerm_dns_txt_record.dns_txt_record | resource |
| azurerm_dns_zone.dns_zone | resource |
| azurerm_private_dns_a_record.private_dns_a_record | resource |
| azurerm_private_dns_cname_record.private_dns_cname_record | resource |
| azurerm_private_dns_mx_record.private_dns_mx_record | resource |
| azurerm_private_dns_txt_record.private_dns_txt_record | resource |
| azurerm_private_dns_zone.private_dns_zone | resource |
| azurerm_private_dns_zone_virtual_network_link.private_dns_zone_virtual_network_link | resource |

Expand All @@ -40,6 +45,10 @@ _<-- This file is autogenerated, please do not change. -->_
| dns_mx_record | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| dns_txt_record | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| dns_zone | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_dns_a_record | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_dns_cname_record | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_dns_mx_record | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_dns_txt_record | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_dns_zone | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_dns_zone_virtual_network_link | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |

Expand All @@ -52,6 +61,10 @@ _<-- This file is autogenerated, please do not change. -->_
| dns_mx_record | Outputs all attributes of resource_type. |
| dns_txt_record | Outputs all attributes of resource_type. |
| dns_zone | Outputs all attributes of resource_type. |
| private_dns_a_record | Outputs all attributes of resource_type. |
| private_dns_cname_record | Outputs all attributes of resource_type. |
| private_dns_mx_record | Outputs all attributes of resource_type. |
| private_dns_txt_record | Outputs all attributes of resource_type. |
| private_dns_zone | Outputs all attributes of resource_type. |
| private_dns_zone_virtual_network_link | Outputs all attributes of resource_type. |
| variables | Displays all configurable variables passed by the module. __default__ = predefined values per module. __merged__ = result of merging the default values and custom values passed to the module |
Expand Down Expand Up @@ -121,6 +134,43 @@ module "dns" {
}
}
}
private_dns_a_record = {
"@" = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
records = ["127.0.0.3"]
}
}
private_dns_cname_record = {
www = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
record = module.dns.private_dns_a_record["@"].fqdn
}
}
private_dns_txt_record = {
dnsauth = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
record = {
frontdoor = {
value = "frontdoor"
}
}
}
}
private_dns_mx_record = {
mail = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
record = {
mail1 = {
preference = 10
exchange = "mail1.telekom-mms.com"
}
}
}
}
private_dns_zone_virtual_network_link = {
pl-mms-github = {
resource_group_name = "rg-mms-github"
Expand Down Expand Up @@ -234,6 +284,67 @@ module "dns" {
}
}
}
private_dns_a_record = {
"@" = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
records = ["127.0.0.3"]
tags = {
project = "mms-github"
environment = terraform.workspace
managed-by = "terraform"
}
}
}
private_dns_cname_record = {
www = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
record = module.dns.private_dns_a_record["@"].fqdn
tags = {
project = "mms-github"
environment = terraform.workspace
managed-by = "terraform"
}
}
}
private_dns_txt_record = {
dnsauth = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
record = {
frontdoor = {
value = "frontdoor"
}
}
tags = {
project = "mms-github"
environment = terraform.workspace
managed-by = "terraform"
}
}
}
private_dns_mx_record = {
mail = {
resource_group_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].resource_group_name
zone_name = module.dns.private_dns_zone["mms-github-privat-plattform.com"].name
record = {
mail1 = {
preference = 10
exchange = "mail1.telekom-mms.com"
}
mail2 = {
preference = 20
exchange = "mail2.telekom-mms.com"
}
}
tags = {
project = "mms-github"
environment = terraform.workspace
managed-by = "terraform"
}
}
}
private_dns_zone_virtual_network_link = {
pl-mms-github = {
resource_group_name = "rg-mms-github"
Expand Down

0 comments on commit bb99a4f

Please sign in to comment.