Skip to content

Commit c86b8d6

Browse files
jasonmkJasonK
and
JasonK
authored
Add il-central-1 region (#31)
* Add il-central-1 region * Fix formatting * Satisfy PR comments * Terraform fmt * Update terratest timeout * Add ca-west-1 region --------- Co-authored-by: JasonK <[email protected]>
1 parent 2d03191 commit c86b8d6

File tree

7 files changed

+86
-161
lines changed

7 files changed

+86
-161
lines changed

.github/renovate.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"extends": [
33
"config:base",
4-
":preserveSemverRanges"
4+
":preserveSemverRanges",
5+
":rebaseStalePrs"
56
],
6-
"baseBranches": ["main", "master", "/^release\\/v\\d{1,2}$/"],
7+
"baseBranches": ["main"],
78
"labels": ["auto-update"],
89
"dependencyDashboardAutoclose": true,
910
"enabledManagers": ["terraform"],
1011
"terraform": {
11-
"ignorePaths": ["**/context.tf", "examples/**"]
12+
"ignorePaths": ["**/context.tf"]
1213
}
1314
}

.github/workflows/release-branch.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'docs/**'
1111
- 'examples/**'
1212
- 'test/**'
13+
- 'README.*'
1314

1415
permissions:
1516
contents: write

.github/workflows/release-published.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ permissions:
1111

1212
jobs:
1313
terraform-module:
14-
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/release.yml@main
14+
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/release-published.yml@main

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2020 Cloud Posse, LLC
189+
Copyright 2020-2024 Cloud Posse, LLC
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

+56-155
Large diffs are not rendered by default.

main.tf

+22
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ locals {
3737
"ap-southeast-3" = "Asia Pacific (Jakarta)"
3838
"ap-southeast-4" = "Asia Pacific (Melbourne)"
3939
"ca-central-1" = "Canada (Central)"
40+
"ca-west-1" = "Canada West (Calgary)"
4041
"eu-central-1" = "Europe (Frankfurt)"
4142
"eu-central-2" = "Europe (Zurich)"
4243
"eu-north-1" = "Europe (Stockholm)"
@@ -45,6 +46,7 @@ locals {
4546
"eu-west-1" = "Europe (Ireland)"
4647
"eu-west-2" = "Europe (London)"
4748
"eu-west-3" = "Europe (Paris)"
49+
"il-central-1" = "Israel (Tel Aviv)"
4850
"me-central-1" = "Middle East (UAE)"
4951
"me-south-1" = "Middle East (Bahrain)"
5052
"sa-east-1" = "South America (Sao Paulo)"
@@ -175,6 +177,11 @@ locals {
175177
"ca-central-1g" = "cc1g"
176178
"ca-central-1h" = "cc1h"
177179

180+
"ca-west-1" = "cw1"
181+
"ca-west-1a" = "cw1a"
182+
"ca-west-1b" = "cw1b"
183+
"ca-west-1c" = "cw1c"
184+
178185
"eu-central-1" = "ec1"
179186
"eu-central-1a" = "ec1a"
180187
"eu-central-1b" = "ec1b"
@@ -285,6 +292,11 @@ locals {
285292
"us-gov-west-1g" = "gw1g"
286293
"us-gov-west-1h" = "gw1h"
287294

295+
"il-central-1" = "ic1"
296+
"il-central-1a" = "ic1a"
297+
"il-central-1b" = "ic1b"
298+
"il-central-1c" = "ic1c"
299+
288300
"me-central-1" = "mc1"
289301
"me-central-1a" = "mc1a"
290302
"me-central-1b" = "mc1b"
@@ -530,6 +542,11 @@ locals {
530542
"ca-central-1g" = "cac1g"
531543
"ca-central-1h" = "cac1h"
532544

545+
"ca-west-1" = "caw1"
546+
"ca-west-1a" = "caw1a"
547+
"ca-west-1b" = "caw1b"
548+
"ca-west-1c" = "caw1c"
549+
533550
"eu-central-1" = "euc1"
534551
"eu-central-1a" = "euc1a"
535552
"eu-central-1b" = "euc1b"
@@ -640,6 +657,11 @@ locals {
640657
"us-gov-west-1g" = "usgw1g"
641658
"us-gov-west-1h" = "usgw1h"
642659

660+
"il-central-1" = "ilc1"
661+
"il-central-1a" = "ilc1a"
662+
"il-central-1b" = "ilc1b"
663+
"il-central-1c" = "ilc1c"
664+
643665
"me-central-1" = "mec1"
644666
"me-central-1a" = "mec1a"
645667
"me-central-1b" = "mec1b"

test/src/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ init:
1515
## Run tests
1616
test: init
1717
go mod download
18-
go test -v -timeout 5m
18+
go test -v -timeout 20m
1919

2020
## Run tests in docker container
2121
docker/test:

0 commit comments

Comments
 (0)