15 lines
337 B
Terraform
15 lines
337 B
Terraform
|
|
// Registry
|
||
|
|
// ----------------------------------
|
||
|
|
|
||
|
|
// The Artifact Registry repository for our app
|
||
|
|
resource "google_artifact_registry_repository" "app-repo" {
|
||
|
|
location = var.region
|
||
|
|
repository_id = "app-repo"
|
||
|
|
description = "App Docker repository"
|
||
|
|
format = "DOCKER"
|
||
|
|
|
||
|
|
docker_config {
|
||
|
|
immutable_tags = true
|
||
|
|
}
|
||
|
|
}
|