Renames `duo_ad_hostnames_us` to `ad_hostnames_us`

This commit is contained in:
Nemo 2021-01-18 19:16:38 +05:30
parent eb3e8c9195
commit 504209e5e1
2 changed files with 12 additions and 4 deletions

View File

@ -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

View File

@ -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/"]
}