Skip to content

Commit f8f6cd2

Browse files
committed
feat(service-ip-ranges): update github cidrs
1 parent 24cb4bd commit f8f6cd2

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

modules/service-ip-ranges/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ This module does not create any resources.
77

88
| Name | Version |
99
|------|---------|
10-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5 |
11-
| <a name="requirement_http"></a> [http](#requirement\_http) | >= 3.0.0 |
10+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.12 |
11+
| <a name="requirement_http"></a> [http](#requirement\_http) | >= 3.5.0 |
1212

1313
## Providers
1414

1515
| Name | Version |
1616
|------|---------|
17-
| <a name="provider_http"></a> [http](#provider\_http) | 3.4.0 |
17+
| <a name="provider_http"></a> [http](#provider\_http) | 3.5.0 |
1818

1919
## Modules
2020

@@ -25,6 +25,8 @@ No modules.
2525
| Name | Type |
2626
|------|------|
2727
| [http_http.atlassian](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |
28+
| [http_http.checkly_ipv4](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |
29+
| [http_http.checkly_ipv6](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |
2830
| [http_http.github](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |
2931
| [http_http.okta](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |
3032
| [http_http.scalr](https://registry.terraform.io/providers/hashicorp/http/latest/docs/data-sources/http) | data source |

modules/service-ip-ranges/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ locals {
6161
: []
6262
)
6363

64-
atlassian_categories = ["bitbucket", "confluence", "jira", "trello"]
64+
atlassian_categories = ["bitbucket", "confluence", "email", "forge", "jira", "opsgenie", "rovo-crawler", "statuspage", "trello"]
6565
atlassian_cidrs = {
6666
for category in local.atlassian_categories :
6767
category => toset([
@@ -125,7 +125,7 @@ locals {
125125
: tomap({})
126126
)
127127

128-
github_categories = ["hooks", "web", "api", "git", "packages", "pages", "importer", "actions", "dependabot"]
128+
github_categories = ["hooks", "web", "api", "git", "github_enterprise_importer", "packages", "pages", "importer", "actions", "dependabot", "actions_macos", "codespaces", "copilot"]
129129
github_cidrs = try({
130130
for category in local.github_categories :
131131
category => toset(local.github_data[category])
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
terraform {
2-
required_version = ">= 1.5"
2+
required_version = ">= 1.12"
33

44
required_providers {
55
http = {
66
source = "hashicorp/http"
7-
version = ">= 3.0.0"
7+
version = ">= 3.5.0"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)