Skip to content

Commit 442c9cf

Browse files
committed
fix: revert some builds to us-east-1 to make sure they still function while investigating if they can change
1 parent d275d14 commit 442c9cf

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/publish-nix-pgupgrade-bin-flake-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: aws-actions/configure-aws-credentials@v1
6363
with:
6464
role-to-assume: ${{ secrets.DEV_AWS_ROLE }}
65-
aws-region: "us-east-1-1"
65+
aws-region: "us-east-1"
6666

6767
- name: Upload pg_upgrade scripts to s3 staging
6868
run: |
@@ -111,7 +111,7 @@ jobs:
111111
uses: aws-actions/configure-aws-credentials@v1
112112
with:
113113
role-to-assume: ${{ secrets.PROD_AWS_ROLE }}
114-
aws-region: "us-east-1-1"
114+
aws-region: "us-east-1"
115115

116116
- name: Upload pg_upgrade scripts to s3 prod
117117
run: |

.github/workflows/publish-nix-pgupgrade-scripts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
uses: aws-actions/configure-aws-credentials@v1
6868
with:
6969
role-to-assume: ${{ secrets.DEV_AWS_ROLE }}
70-
aws-region: "us-east-1-1"
70+
aws-region: "us-east-1"
7171

7272
- name: Upload pg_upgrade scripts to s3 staging
7373
run: |
@@ -118,7 +118,7 @@ jobs:
118118
uses: aws-actions/configure-aws-credentials@v1
119119
with:
120120
role-to-assume: ${{ secrets.PROD_AWS_ROLE }}
121-
aws-region: "us-east-1-1"
121+
aws-region: "us-east-1"
122122

123123
- name: Upload pg_upgrade scripts to s3 prod
124124
run: |

.github/workflows/qemu-image-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
uses: aws-actions/configure-aws-credentials@v4
104104
with:
105105
role-to-assume: ${{ secrets.CONTROL_PLANE_DEV_ROLE }}
106-
aws-region: "us-east-1-1"
106+
aws-region: "us-east-1"
107107

108108
- name: Login to Amazon ECR
109109
id: login-ecr-private-dev
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: Push docker image to Amazon ECR
119119
env:
120-
REGISTRY: 812073016711.dkr.ecr.us-east-1-1.amazonaws.com
120+
REGISTRY: 812073016711.dkr.ecr.us-east-1.amazonaws.com
121121
REPOSITORY: postgres-vm-image
122122
IMAGE_TAG: ${{ steps.process_release_version.outputs.version }}
123123
run: |
@@ -129,15 +129,15 @@ jobs:
129129
uses: aws-actions/configure-aws-credentials@v4
130130
with:
131131
role-to-assume: ${{ secrets.CONTROL_PLANE_PROD_ROLE }}
132-
aws-region: "us-east-1-1"
132+
aws-region: "us-east-1"
133133

134134
- name: Login to Amazon ECR
135135
id: login-ecr-private-prod
136136
uses: aws-actions/amazon-ecr-login@v2
137137

138138
- name: Push docker image to Amazon ECR
139139
env:
140-
REGISTRY: 156470330064.dkr.ecr.us-east-1-1.amazonaws.com
140+
REGISTRY: 156470330064.dkr.ecr.us-east-1.amazonaws.com
141141
REPOSITORY: postgres-vm-image
142142
IMAGE_TAG: ${{ steps.process_release_version.outputs.version }}
143143
run: |

0 commit comments

Comments
 (0)