Skip to content

Commit

Permalink
chore: rename 'ml_infra_project' to 'ml_infra_projects' for consisten…
Browse files Browse the repository at this point in the history
…cy (#44)

* chore: adjust naming

* adjust outputs
  • Loading branch information
caetano-colin authored Jun 11, 2024
1 parent 454bee4 commit cbf035b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 4-projects/business_unit_3/shared/ml_infra_projects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

module "ml_infra_project" {
module "ml_infra_projects" {
source = "../../modules/ml_infra_projects"

org_id = local.org_id
Expand Down
12 changes: 6 additions & 6 deletions 4-projects/business_unit_3/shared/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,30 +65,30 @@ output "enable_cloudbuild_deploy" {

output "service_catalog_project_id" {
description = "Service Catalog Project ID."
value = module.ml_infra_project.service_catalog_project_id
value = module.ml_infra_projects.service_catalog_project_id
}

output "common_artifacts_project_id" {
description = "App Infra Artifacts Project ID"
value = module.ml_infra_project.common_artifacts_project_id
value = module.ml_infra_projects.common_artifacts_project_id
}

output "service_catalog_repo_name" {
description = "The name of the Service Catalog repository"
value = module.ml_infra_project.service_catalog_repo_name
value = module.ml_infra_projects.service_catalog_repo_name
}

output "service_catalog_repo_id" {
description = "ID of the Service Catalog repository"
value = module.ml_infra_project.service_catalog_repo_id
value = module.ml_infra_projects.service_catalog_repo_id
}

output "artifacts_repo_name" {
description = "The name of the Artifacts repository"
value = module.ml_infra_project.artifacts_repo_name
value = module.ml_infra_projects.artifacts_repo_name
}

output "artifacts_repo_id" {
description = "ID of the Artifacts repository"
value = module.ml_infra_project.artifacts_repo_id
value = module.ml_infra_projects.artifacts_repo_id
}

0 comments on commit cbf035b

Please sign in to comment.