reintroduce docker image path output in AR module (#2433)

This commit is contained in:
Ludovico Magnocavallo
2024-07-20 08:49:59 +02:00
committed by GitHub
parent 3151b02eda
commit 485442af03
3 changed files with 15 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ output "created_resources" {
vpc_id = module.vpc[0].id
},
!var.registry_create ? {} : {
registry = module.registry[0].image_path
registry = module.registry[0].docker_image_path
},
!local.cluster_create ? {} : {
cluster = module.cluster[0].id

View File

@@ -230,7 +230,8 @@ module "registry-docker" {
| name | description | sensitive |
|---|---|:---:|
| [id](outputs.tf#L17) | Fully qualified repository id. | |
| [name](outputs.tf#L22) | Repository name. | |
| [repository](outputs.tf#L27) | Repository object. | |
| [docker_image_path](outputs.tf#L17) | Repository path for Docker images. | |
| [id](outputs.tf#L27) | Fully qualified repository id. | |
| [name](outputs.tf#L32) | Repository name. | |
| [repository](outputs.tf#L37) | Repository object. | |
<!-- END TFDOC -->

View File

@@ -14,6 +14,16 @@
* limitations under the License.
*/
output "docker_image_path" {
description = "Repository path for Docker images."
value = join("/", [
"${var.location}-${local.format_string}.pkg.dev",
var.project_id,
var.name
])
depends_on = [google_artifact_registry_repository.registry]
}
output "id" {
description = "Fully qualified repository id."
value = google_artifact_registry_repository.registry.id