Skip to content

Commit 6c9a4d8

Browse files
authored
Update the EUSC AWS roles and bucket names in publish.yml (#160)
* Update the EUSC AWS roles and bucket names in publish.yml This moves the AMI publication for AWS EUSC to a new AWS account exclusively dedicated to publishing AMIs. * Update IAM role ARN in publish.yml * Correct AWS account ID for European Sovereign Cloud AMIs Updated the AWS account ID for EUSC AMIs in the README.
1 parent 1a5f930 commit 6c9a4d8

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
- role: arn:aws-us-gov:iam::579351485434:role/upload-ami
7272
region: us-gov-west-1
7373
bucket: detsys-nixos-images-20260303190747195900000001
74-
- role: arn:aws-eusc:iam::111921064076:role/upload-ami
74+
- role: arn:aws-eusc:iam::129194717446:role/upload-ami
7575
region: eusc-de-east-1
76-
bucket: detsys-nixos-images-20260304164532954800000001
76+
bucket: detsys-nixos-images-20260409030044091900000001
7777

7878
steps:
7979
- uses: actions/checkout@v4
@@ -168,7 +168,7 @@ jobs:
168168
region: us-east-2
169169
- role: arn:aws-us-gov:iam::579351485434:role/upload-ami
170170
region: us-gov-west-1
171-
- role: arn:aws-eusc:iam::111921064076:role/upload-ami
171+
- role: arn:aws-eusc:iam::129194717446:role/upload-ami
172172
region: eusc-de-east-1
173173

174174
steps:

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,17 @@ data "aws_ami" "detsys_nixos" {
107107
> [!NOTE]
108108
> The Terraform configuration below is compatible with [OpenTofu] as well.
109109
110+
> [!NOTE]
111+
> We previously published EUSC AMIs to the AWS account `111921064076`.
112+
> The correct AWS account for the European Sovereign Cloud AMIs is `129194717446` as of 2026-04-08.
113+
110114
You can use our official AMI for NixOS in a [Terraform] configuration like this:
111115

112116
```hcl
113117
data "aws_ami" "detsys_nixos" {
114118
most_recent = true
115119
116-
owners = [ "111921064076" ]
120+
owners = [ "129194717446" ]
117121
118122
filter {
119123
name = "name"

0 commit comments

Comments
 (0)