Skip to content

Commit

Permalink
rename ml_infra_project -> ml_infra_projects
Browse files Browse the repository at this point in the history
  • Loading branch information
caetano-colin committed May 29, 2024
1 parent 2f937ce commit 68ed1f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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
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 68ed1f4

Please sign in to comment.