Skip to content

Commit

Permalink
Merge pull request #367 from umccr/portal-codebuild-arm-container
Browse files Browse the repository at this point in the history
Portal TF: Switched Portal CodeBuild to ARM_CONTAINER with Python3.11 Node18
  • Loading branch information
victorskl authored Oct 9, 2023
2 parents 571b910 + 932a3bb commit be5e2b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions terraform/stacks/umccr_data_portal/cicd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ resource "aws_codebuild_project" "codebuild_client" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"

environment_variable {
name = "STAGE"
Expand Down Expand Up @@ -375,8 +375,8 @@ resource "aws_codebuild_project" "codebuild_apis" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
privileged_mode = true

environment_variable {
Expand Down
4 changes: 2 additions & 2 deletions terraform/stacks/umccr_data_portal/data2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ resource "aws_codebuild_project" "codebuild_data2" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"

environment_variable {
name = "STAGE"
Expand Down

0 comments on commit be5e2b6

Please sign in to comment.