You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="The ID of the Cloud Foundry org connected to the subaccount."
6
+
output"abap_admin_email" {
7
+
value=var.abap_admin_email
8
+
description="Email of the ABAP Administrator."
9
9
}
10
10
11
11
output"cf_api_url" {
@@ -18,6 +18,21 @@ output "cf_landscape_label" {
18
18
description="Landscape label of the Cloud Foundry environment."
19
19
}
20
20
21
+
output"cf_org_id" {
22
+
value=local.cf_environment_instance.platform_id
23
+
description="The ID of the Cloud Foundry org connected to the subaccount."
24
+
}
25
+
26
+
output"create_cf_space" {
27
+
value=local.create_cf_space
28
+
description="Determines whether a new CF space should be created. Must be true if no space with the name cf_space_name exists for the Org, yet, and false otherwise."
29
+
}
30
+
31
+
output"cf_space_name" {
32
+
value=var.cf_space_name
33
+
description="The name of the CF space to use."
34
+
}
35
+
21
36
output"cf_org_managers" {
22
37
value=var.cf_org_managers
23
38
description="List of managers for the Cloud Foundry org."
@@ -31,19 +46,4 @@ output "cf_space_managers" {
31
46
output"cf_space_developers" {
32
47
value=var.cf_space_developers
33
48
description="List of developers for the Cloud Foundry space."
34
-
}
35
-
36
-
output"cf_space_name" {
37
-
value=var.cf_space_name
38
-
description="The name of the CF space to use."
39
-
}
40
-
41
-
output"create_cf_space" {
42
-
value=local.create_cf_space
43
-
description="Determines whether a new CF space should be created. Must be true if no space with the name cf_space_name exists for the Org, yet, and false otherwise."
description="Determines whether a new CF space should be created. Must be true if no space with the given name exists for the org, false otherwise. If CF isn't enabled for no subaccount a new space will always be created"
description="List of managers for the Cloud Foundry org."
@@ -24,32 +85,20 @@ variable "cf_org_managers" {
24
85
variable"cf_space_managers" {
25
86
type=list(string)
26
87
description="List of managers for the Cloud Foundry space."
88
+
default=[]
27
89
}
28
90
29
91
variable"cf_space_developers" {
30
92
type=list(string)
31
93
description="List of developers for the Cloud Foundry space."
94
+
default=[]
32
95
}
33
96
34
-
variable"cf_space_name" {
35
-
type=string
36
-
description="The name of the CF space to use."
37
-
}
38
-
39
-
variable"create_cf_space" {
40
-
type=bool
41
-
description="Determines whether a new CF space should be created. Must be true if no space with the given name exists for the org, false otherwise. If CF isn't enabled for the subaccount a new space will always be created"
0 commit comments