Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove switch ECR public repositories #750

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 0 additions & 42 deletions infrastructure/core/ecr.tf
Original file line number Diff line number Diff line change
@@ -1,45 +1,3 @@
resource "aws_ecrpublic_repository" "switch" {
repository_name = "somleng-switch"
provider = aws.us-east-1

catalog_data {
about_text = "Somleng Switch"
architectures = ["Linux"]
description = "SomlengSWITCH is the switch layer for Somleng. It includes an open source TwiML interpreter"
}
}

resource "aws_ecrpublic_repository" "nginx" {
repository_name = "somleng-switch-nginx"
provider = aws.us-east-1

catalog_data {
about_text = "Somleng Switch Nginx"
architectures = ["Linux"]
}
}

resource "aws_ecrpublic_repository" "freeswitch" {
repository_name = "somleng-switch-freeswitch"
provider = aws.us-east-1

catalog_data {
about_text = "Somleng Switch FreeSWITCH"
architectures = ["Linux"]
description = "FreeSWITCH configuration optimized for Somleng"
}
}

resource "aws_ecrpublic_repository" "freeswitch_event_logger" {
repository_name = "somleng-switch-freeswitch-event-logger"
provider = aws.us-east-1

catalog_data {
about_text = "Somleng Switch FreeSWITCH Event Logger"
architectures = ["Linux"]
}
}

resource "aws_ecrpublic_repository" "public_gateway" {
repository_name = "public-gateway"
provider = aws.us-east-1
Expand Down
Loading