Skip to content

Commit

Permalink
chore: set codebuild compute_type as free tier instance
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranbrown committed Jan 4, 2024
1 parent b9be5b0 commit d87642b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/aft-code-repositories/codebuild.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "aws_codebuild_project" "account_request" {
}

environment {
compute_type = "BUILD_GENERAL1_MEDIUM"
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
Expand Down Expand Up @@ -78,7 +78,7 @@ resource "aws_codebuild_project" "account_provisioning_customizations_pipeline"
}

environment {
compute_type = "BUILD_GENERAL1_MEDIUM"
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
Expand Down
6 changes: 3 additions & 3 deletions modules/aft-customizations/codebuild.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "aws_codebuild_project" "aft_global_customizations_terraform" {
}

environment {
compute_type = "BUILD_GENERAL1_MEDIUM"
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
Expand Down Expand Up @@ -92,7 +92,7 @@ resource "aws_codebuild_project" "aft_account_customizations_terraform" {
}

environment {
compute_type = "BUILD_GENERAL1_MEDIUM"
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
Expand Down Expand Up @@ -165,7 +165,7 @@ resource "aws_codebuild_project" "aft_create_pipeline" {
}

environment {
compute_type = "BUILD_GENERAL1_MEDIUM"
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
Expand Down
2 changes: 1 addition & 1 deletion modules/aft-lambda-layer/codebuild.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource "aws_codebuild_project" "codebuild" {
}

environment {
compute_type = "BUILD_GENERAL1_MEDIUM"
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
Expand Down

0 comments on commit d87642b

Please sign in to comment.