# terraform-data-duo-ips ![](https://img.shields.io/badge/license-MIT-blue.svg) This module provides an updated list of Duo's public CIDRs. These are maintained against the Duo Documentation: https://help.duo.com/s/article/1337 # Usage ```hcl module "duo-ips" { source = "captn3m0/duo-ips/data" version = "1.0.2" } resource "aws_security_group_rule" "allow_all_to_duo" { type = "egress" from_port = 0 to_port = 443 protocol = "tcp" cidr_blocks = ["${module.duo-ips.cidr}"] security_group_id = "sg-123456" } ``` ## Outputs The following outputs are exported: ### ad\_hostnames\_ca Description: Map of Duo's Microsoft Azure Active Directory Conditional Access application for Canada deployments ### ad\_hostnames\_eu Description: Map of Duo's Microsoft Azure Active Directory Conditional Access application for Europe deployments ### cidrs Description: List of all Duo Service CIDRs. Allow for egress to Duo ### duo\_ad\_hostnames\_us Description: Map of Duo's Microsoft Azure Active Directory Conditional Access application for US deployments ### trusted\_endpoints\_cidrs Description: List of Duo's Trusted Endpoint CIDRs. Allow for ingress from Duo # LICENSE Licensed under MIT. See [nemo.mit-license.org](https://nemo.mit-license.org/) for complete text.