ip-addresses

calidae/ip-addresses/bitbucket

Terraform Module HCL BITBUCKET

Fetch and parse https://ip-ranges.atlassian.com/

Install
module "ip-addresses" {
source = "calidae/ip-addresses/bitbucket"
version = "1.2.0"
}
plain text: /constructs/tfmod-calidae-ip-addresses-bitbucket/install.txt
⭐ Source on GitHub 📦 Registry page
README

Bitbucket Whitelist IP Addresses This module provides both an IPv4 and IPv6 list of IP Addresses from Bitbucket, useful for whitelisting and security groups. Example usages AWS Security group `` module "bitbucket_ips" { source = "calidae/ip-addresses/bitbucket" } resource "aws_security_group" "example" { name = "example" description = "Example security group" ingress { from_port = 443 to_port = 443 protocol = "tcp" cidr_blocks = module.bitbucket_ips.ipv4_range ipv6_cidr_blocks = module.bitbucket_ips.ipv6_range description = "Webhooks from Atlassian public IP range" } } ` AWS Policy ` module "bitbucket_ips" { source = "calidae/ip-addresses/bitbucket" } data "aws_iam_policy_document" "example" { statement { effect = "Allow" actions = ["sts:AssumeRoleWithWebIdentity"] principals { type = "Fed

Outputs (5)
ipv6_range — A list of IPv6 Addresses for outbound connections from Bitbucket's services.
ipv4_ip_addresses — Alias to ipv4_range
ipv6_ip_addresses — Alias to ipv6_range
ip_range — A list of IPv4 and IPv6 Addresses for outbound connections from Bitbucket's services.
ipv4_range — A list of IPv4 Addresses for outbound connections from Bitbucket's services.
Topics & Tags
terraform-module
Details
FrameworkTerraform Module
LanguageHCL
Version1.2.0
Cloud BITBUCKET
★ Stars0
Forks1
Total downloads2.3k
Outputs5
LicenseMIT
Namespacecalidae
Updated