Skip to content

Commit 94b4bb2

Browse files
committed
chore: fixes validation issues
1 parent 4ac6027 commit 94b4bb2

File tree

2 files changed

+2
-7
lines changed
  • released/SAP-Inside-Tracks/SITBLR_DEC_2024/exercises/EXERCISE4/SOLUTION_EX4

2 files changed

+2
-7
lines changed

released/SAP-Inside-Tracks/SITBLR_DEC_2024/exercises/EXERCISE4/SOLUTION_EX4/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ resource "cloudfoundry_org_role" "my_role" {
5959
}
6060

6161
resource "cloudfoundry_space" "space" {
62-
name = var.name
62+
name = var.cf_space_name
6363
org = btp_subaccount_environment_instance.cloudfoundry.platform_id
6464
}
6565

released/SAP-Inside-Tracks/SITBLR_DEC_2024/exercises/EXERCISE4/SOLUTION_EX4/outputs.tf

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,4 @@ output "subaccount_name" {
1111
output "cloudfoundry_org_name" {
1212
value = local.project_subaccount_cf_org
1313
description = "The name of the cloudfoundry org connected to the project account."
14-
}
15-
16-
output "cloudfoundry_org_id" {
17-
value = module.cloudfoundry_environment.cf_org_id
18-
description = "The ID of the cloudfoundry org connected to the project account."
19-
}
14+
}

0 commit comments

Comments
 (0)