feat: Add Terraform configuration for GCP infrastructure and Docker setup
This commit is contained in:
parent
94499fd16e
commit
538fed9a66
10 changed files with 283 additions and 0 deletions
14
gcloud/tf/registry.tf
Normal file
14
gcloud/tf/registry.tf
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// Registry
|
||||
// ----------------------------------
|
||||
|
||||
// The Artifact Registry repository for our app
|
||||
resource "google_artifact_registry_repository" "app-repo" {
|
||||
location = vas.region
|
||||
repository_id = "app-repo"
|
||||
description = "App Docker repository"
|
||||
format = "DOCKER"
|
||||
|
||||
docker_config {
|
||||
immutable_tags = true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue