File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
released/discovery_center/mission_4038 Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ resource "btp_subaccount_entitlement" "sap_integration_suite" {
98
98
subaccount_id = data. btp_subaccount . dc_mission . id
99
99
service_name = local. service_name__sap_integration_suite
100
100
plan_name = var. service_plan__sap_integration_suite
101
+ amount = var. service_plan__sap_integration_suite == " free" ? 1 : null
101
102
}
102
103
103
104
data "btp_subaccount_subscriptions" "all" {
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ output "subaccount_id" {
5
5
6
6
output "integrationsuite_url" {
7
7
value = btp_subaccount_subscription. sap_integration_suite . subscription_url
8
- description = " Subscription URL for SAP Business Process Automation "
8
+ description = " Subscription URL for SAP Integration Suite. "
9
9
}
Original file line number Diff line number Diff line change 2
2
terraform {
3
3
required_providers {
4
4
btp = {
5
- source = " sap /btp"
5
+ source = " SAP /btp"
6
6
version = " ~> 1.5.0"
7
7
}
8
8
}
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ variable "service_plan__sap_integration_suite" {
70
70
description = " The plan for SAP Integration Suite"
71
71
default = " enterprise_agreement"
72
72
validation {
73
- condition = contains ([" enterprise_agreement" ], var. service_plan__sap_integration_suite )
74
- error_message = " Invalid value for service_plan__sap_integration_suite. Only 'enterprise_agreement' are allowed."
73
+ condition = contains ([" free " , " enterprise_agreement" ], var. service_plan__sap_integration_suite )
74
+ error_message = " Invalid value for service_plan__sap_integration_suite. Only 'free' and ' enterprise_agreement' are allowed."
75
75
}
76
76
}
77
77
You can’t perform that action at this time.
0 commit comments