2025-09-08 12:15:29 +01:00
|
|
|
// Registry
|
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
|
|
// The Artifact Registry repository for our app
|
|
|
|
|
resource "google_artifact_registry_repository" "app-repo" {
|
2025-09-08 17:01:14 +01:00
|
|
|
location = var.region
|
2025-09-08 12:15:29 +01:00
|
|
|
repository_id = "app-repo"
|
|
|
|
|
description = "App Docker repository"
|
|
|
|
|
format = "DOCKER"
|
|
|
|
|
|
|
|
|
|
docker_config {
|
|
|
|
|
immutable_tags = true
|
|
|
|
|
}
|
|
|
|
|
}
|