🏡 index : github.com/captn3m0/terraform-data-duo-ips.git

author Nemo <commits@captnemo.in> 2021-01-18 19:16:38.0 +05:30:00
committer Nemo <commits@captnemo.in> 2021-01-18 19:16:42.0 +05:30:00
commit
504209e5e11864a97e227d0aaa0be5f7dc0dbfb5 [patch]
tree
b3f4baa710066da991d9830958c58f786daa611d
parent
eb3e8c91956de11d7d67cde4de030e9aed6cdabb
download
504209e5e11864a97e227d0aaa0be5f7dc0dbfb5.tar.gz

Renames `duo_ad_hostnames_us` to `ad_hostnames_us`



Diff

 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
+++ a/README.md
@@ -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

diff --git a/outputs.tf b/outputs.tf
index 1ad6e59..5beb4aa 100644
--- a/outputs.tf
+++ a/outputs.tf
@@ -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/"]
}