Update modules/artifact-registry with newly-released features. (#2396)

Fixes #2377
This commit is contained in:
Julio Castillo
2024-06-28 19:52:25 +02:00
committed by GitHub
parent 198fa01159
commit 4e8adc9c43
10 changed files with 456 additions and 93 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 2023 Google LLC
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -155,6 +155,7 @@ module "orch-artifact-reg" {
name = "${var.prefix}-app-images"
location = var.region
description = "Docker repository storing application images e.g. Dataflow, Cloud Run etc..."
format = { docker = { standard = {} } }
}
module "orch-cs-df-template" {

View File

@@ -1,5 +1,5 @@
/**
* Copyright 2022 Google LLC
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,6 +43,7 @@ module "artifact_registry" {
name = "docker-repo"
project_id = module.project.project_id
location = var.region
format = { docker = { standard = {} } }
}
module "service-account-github" {