Created
July 4, 2021 01:56
-
-
Save xximjasonxx/c81f4c327559d213cf207d30681565db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module "private_eventgrid_dns_a_record" { | |
source = "./modules/networking/dns/a_record" | |
depends_on = [ | |
module.private_dns, | |
module.private_storage, | |
module.eventgrid_topic | |
] | |
name = "${module.eventgrid_topic.event_grid_topic_name}.${split(".", module.eventgrid_topic.eventgrid_topic_endpoint)[1]}" | |
rg_name = azurerm_resource_group.rg.name | |
zone_name = module.private_eventgrid_dns.zone_name | |
ip_records = [ module.private_eventgrid.private_ip ] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment