Renames `duo_ad_hostnames_us` to `ad_hostnames_us`
Diff
README.md | 10 +++++++++-
outputs.tf | 6 +++++-
2 files changed, 12 insertions(+), 4 deletions(-)
@@ -7,7 +7,7 @@
```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 @@
}
```
## Changelog
### 1.0.3
- Renamed `duo_ad_hostnames_us` to `ad_hostnames_us`
## Outputs
The following outputs are exported:
@@ -36,7 +42,7 @@
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
@@ -31,10 +31,12 @@
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/"]
}