Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add il-central-1 region #31

Merged
merged 6 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"extends": [
"config:base",
":preserveSemverRanges"
":preserveSemverRanges",
":rebaseStalePrs"
],
"baseBranches": ["main", "master", "/^release\\/v\\d{1,2}$/"],
"baseBranches": ["main"],
"labels": ["auto-update"],
"dependencyDashboardAutoclose": true,
"enabledManagers": ["terraform"],
"terraform": {
"ignorePaths": ["**/context.tf", "examples/**"]
"ignorePaths": ["**/context.tf"]
}
}
1 change: 1 addition & 0 deletions .github/workflows/release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- 'docs/**'
- 'examples/**'
- 'test/**'
- 'README.*'

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ permissions:

jobs:
terraform-module:
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/release.yml@main
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/release-published.yml@main
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2020 Cloud Posse, LLC
Copyright 2020-2024 Cloud Posse, LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
211 changes: 56 additions & 155 deletions README.md

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ locals {
"ap-southeast-3" = "Asia Pacific (Jakarta)"
"ap-southeast-4" = "Asia Pacific (Melbourne)"
"ca-central-1" = "Canada (Central)"
"ca-west-1" = "Canada West (Calgary)"
"eu-central-1" = "Europe (Frankfurt)"
"eu-central-2" = "Europe (Zurich)"
"eu-north-1" = "Europe (Stockholm)"
Expand All @@ -45,6 +46,7 @@ locals {
"eu-west-1" = "Europe (Ireland)"
"eu-west-2" = "Europe (London)"
"eu-west-3" = "Europe (Paris)"
"il-central-1" = "Israel (Tel Aviv)"
"me-central-1" = "Middle East (UAE)"
"me-south-1" = "Middle East (Bahrain)"
"sa-east-1" = "South America (Sao Paulo)"
Expand Down Expand Up @@ -175,6 +177,11 @@ locals {
"ca-central-1g" = "cc1g"
"ca-central-1h" = "cc1h"

"ca-west-1" = "cw1"
"ca-west-1a" = "cw1a"
"ca-west-1b" = "cw1b"
"ca-west-1c" = "cw1c"

"eu-central-1" = "ec1"
"eu-central-1a" = "ec1a"
"eu-central-1b" = "ec1b"
Expand Down Expand Up @@ -285,6 +292,11 @@ locals {
"us-gov-west-1g" = "gw1g"
"us-gov-west-1h" = "gw1h"

"il-central-1" = "ic1"
"il-central-1a" = "ic1a"
"il-central-1b" = "ic1b"
"il-central-1c" = "ic1c"

"me-central-1" = "mc1"
"me-central-1a" = "mc1a"
"me-central-1b" = "mc1b"
Expand Down Expand Up @@ -530,6 +542,11 @@ locals {
"ca-central-1g" = "cac1g"
"ca-central-1h" = "cac1h"

"ca-west-1" = "caw1"
"ca-west-1a" = "caw1a"
"ca-west-1b" = "caw1b"
"ca-west-1c" = "caw1c"

"eu-central-1" = "euc1"
"eu-central-1a" = "euc1a"
"eu-central-1b" = "euc1b"
Expand Down Expand Up @@ -640,6 +657,11 @@ locals {
"us-gov-west-1g" = "usgw1g"
"us-gov-west-1h" = "usgw1h"

"il-central-1" = "ilc1"
"il-central-1a" = "ilc1a"
"il-central-1b" = "ilc1b"
"il-central-1c" = "ilc1c"

"me-central-1" = "mec1"
"me-central-1a" = "mec1a"
"me-central-1b" = "mec1b"
Expand Down
2 changes: 1 addition & 1 deletion test/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ init:
## Run tests
test: init
go mod download
go test -v -timeout 5m
go test -v -timeout 20m

## Run tests in docker container
docker/test:
Expand Down