Skip to content

Commit

Permalink
add repositories for component-based containers
Browse files Browse the repository at this point in the history
  • Loading branch information
ships committed Feb 6, 2024
1 parent 0fcd13a commit 54cc9d8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions infrastructure/terraform/aws/modules/v7-cluster/ecr.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,21 @@ resource "aws_ecr_repository" "pubpub_v7" {
scan_on_push = false # can set this to true if we want
}
}

resource "aws_ecr_repository" "pubpub_v7_core" {
name = "pubpub-v7-core"
image_tag_mutability = "MUTABLE"

image_scanning_configuration {
scan_on_push = false # can set this to true if we want
}
}

resource "aws_ecr_repository" "pubpub_v7_intg_submissions" {
name = "pubpub-v7-integration-submissions"
image_tag_mutability = "MUTABLE"

image_scanning_configuration {
scan_on_push = false # can set this to true if we want
}
}

0 comments on commit 54cc9d8

Please sign in to comment.