@@ -51,7 +51,7 @@ resource "btp_subaccount_entitlement" "mobile_services" {
51
51
plan_name = " build-code"
52
52
}
53
53
# Create the service instance
54
- data cloudfoundry_service_plans "mobile_services" {
54
+ data " cloudfoundry_service_plans" "mobile_services" {
55
55
name = " mobile-services"
56
56
depends_on = [btp_subaccount_entitlement . mobile_services ]
57
57
}
@@ -82,7 +82,7 @@ resource "btp_subaccount_entitlement" "cloud_logging" {
82
82
plan_name = " build-code"
83
83
}
84
84
# Create the service instance
85
- data cloudfoundry_service_plans "cloud_logging" {
85
+ data " cloudfoundry_service_plans" "cloud_logging" {
86
86
name = " cloud-logging"
87
87
depends_on = [btp_subaccount_entitlement . cloud_logging ]
88
88
}
@@ -113,7 +113,7 @@ resource "btp_subaccount_entitlement" "alert_notification" {
113
113
plan_name = " build-code"
114
114
}
115
115
# Create the service instance
116
- data cloudfoundry_service_plans "alert_notification" {
116
+ data " cloudfoundry_service_plans" "alert_notification" {
117
117
name = " alert-notification"
118
118
depends_on = [btp_subaccount_entitlement . alert_notification ]
119
119
}
@@ -144,7 +144,7 @@ resource "btp_subaccount_entitlement" "transport" {
144
144
plan_name = " standard"
145
145
}
146
146
# Create the service instance
147
- data cloudfoundry_service_plans "transport" {
147
+ data " cloudfoundry_service_plans" "transport" {
148
148
name = " transport"
149
149
depends_on = [btp_subaccount_entitlement . transport ]
150
150
}
@@ -175,7 +175,7 @@ resource "btp_subaccount_entitlement" "autoscaler" {
175
175
plan_name = " standard"
176
176
}
177
177
# Create the service instance
178
- data cloudfoundry_service_plans "autoscaler" {
178
+ data " cloudfoundry_service_plans" "autoscaler" {
179
179
name = " autoscaler"
180
180
depends_on = [btp_subaccount_entitlement . autoscaler ]
181
181
}
@@ -197,7 +197,7 @@ resource "btp_subaccount_entitlement" "feature_flags" {
197
197
plan_name = " standard"
198
198
}
199
199
# Create the service instance
200
- data cloudfoundry_service_plans "feature_flags" {
200
+ data " cloudfoundry_service_plans" "feature_flags" {
201
201
name = " feature-flags"
202
202
depends_on = [btp_subaccount_entitlement . feature_flags ]
203
203
}
0 commit comments