We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f10290 commit f3b276dCopy full SHA for f3b276d
released/discovery_center/mission_3501/step1/variables.tf
@@ -122,6 +122,11 @@ variable "cf_space_developers" {
122
variable "service_plan__sap_business_app_studio" {
123
type = string
124
description = "The plan for SAP Business Application Studio"
125
+ default = "standard-edition"
126
+ validation {
127
+ condition = contains(["standard-edition"], var.service_plan__sap_business_app_studio)
128
+ error_message = "Invalid value for service_plan__sap_business_app_studio. Only 'standard-edition' is allowed."
129
+ }
130
}
131
132
variable "appstudio_developers" {
0 commit comments