Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
Merge branch 'feature/helm-charts' of github.com:MGTheTrain/ml-ops-ft…
Browse files Browse the repository at this point in the history
…w into feature/helm-charts
  • Loading branch information
MGTheTrain committed Apr 27, 2024
2 parents bd5f7fc + 1ecd4f1 commit 45f3ce9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions terraform/envs/sbx-k8s-deployment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module "az" {
}

module "acr" {
source = "../../modules/acr"
digital_product_affix = var.digital_product_affix_acr_module
environment = var.environment
resource_instance_number = var.resource_instance_number
location = var.location
team = var.team
source = "../../modules/acr"
digital_product_affix = var.digital_product_affix_acr_module
environment = var.environment
resource_instance_number = var.resource_instance_number
location = var.location
team = var.team
number_of_container_registries = var.number_of_container_registries
acr_sku = var.acr_sku
acr_admin_enabled = var.acr_admin_enabled
acr_sku = var.acr_sku
acr_admin_enabled = var.acr_admin_enabled
}
2 changes: 1 addition & 1 deletion terraform/envs/sbx-k8s-deployment/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ output "container_registry_admin_username_list" {
}

output "container_registry_admin_password_list" {
value = module.acr.container_registry_admin_password_list
value = module.acr.container_registry_admin_password_list
sensitive = true
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/acr/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ output "container_registry_admin_username_list" {
}

output "container_registry_admin_password_list" {
value = [for container_registry in azurerm_container_registry.this : container_registry.admin_password]
value = [for container_registry in azurerm_container_registry.this : container_registry.admin_password]
sensitive = true
}

Expand Down

0 comments on commit 45f3ce9

Please sign in to comment.