From 504209e5e11864a97e227d0aaa0be5f7dc0dbfb5 Mon Sep 17 00:00:00 2001 From: Nemo Date: Mon, 18 Jan 2021 19:16:38 +0530 Subject: [PATCH] Renames `duo_ad_hostnames_us` to `ad_hostnames_us` --- README.md | 10 ++++++++-- outputs.tf | 6 ++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 253fb2b..d9b21ac 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This module provides an updated list of Duo's public CIDRs. These are maintained ```hcl module "duo-ips" { source = "captn3m0/duo-ips/data" - version = "1.0.2" + version = "1.0.3" } resource "aws_security_group_rule" "allow_all_to_duo" { @@ -20,6 +20,12 @@ resource "aws_security_group_rule" "allow_all_to_duo" { } ``` +## Changelog + +### 1.0.3 + +- Renamed `duo_ad_hostnames_us` to `ad_hostnames_us` + ## Outputs The following outputs are exported: @@ -36,7 +42,7 @@ Description: Map of Duo's Microsoft Azure Active Directory Conditional Access ap Description: List of all Duo Service CIDRs. Allow for egress to Duo -### duo\_ad\_hostnames\_us +### ad\_hostnames\_us Description: Map of Duo's Microsoft Azure Active Directory Conditional Access application for US deployments diff --git a/outputs.tf b/outputs.tf index 1ad6e59..5beb4aa 100644 --- a/outputs.tf +++ b/outputs.tf @@ -31,10 +31,12 @@ output "ad_hostnames_ca" { output "ad_hostnames_eu" { description = "Map of Duo's Microsoft Azure Active Directory Conditional Access application for Europe deployments" - values = ["http://ec1.azureauth.duosecurity.com/", "http://eu-west.azureauth.duosecurity.com/"] + values = [ + "http://ec1.azureauth.duosecurity.com/", "http://eu-west.azureauth.duosecurity.com/" + ] } -output "duo_ad_hostnames_us" { +output "ad_hostnames_us" { description = "Map of Duo's Microsoft Azure Active Directory Conditional Access application for US deployments" values = ["http://us.azureauth.duosecurity.com/"] }