Skip to content

Commit d283755

Browse files
committed
chore: fmt fixes
1 parent ed0f66c commit d283755

File tree

1 file changed

+6
-6
lines changed
  • released/discovery_center/mission_4327/step1

1 file changed

+6
-6
lines changed

released/discovery_center/mission_4327/step1/main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ data "btp_subaccount_environments" "all" {
3030
resource "terraform_data" "cf_landscape_label" {
3131
input = length(var.cf_landscape_label) > 0 ? var.cf_landscape_label : [for env in data.btp_subaccount_environments.all.values : env if env.service_name == "cloudfoundry" && env.environment_type == "cloudfoundry"][0].landscape_label
3232
}
33-
resource "btp_subaccount_entitlement" "cf_free"{
34-
subaccount_id = btp_subaccount.project.id
35-
service_name = "cloudfoundry"
36-
plan_name = "free"
37-
amount = 1
33+
resource "btp_subaccount_entitlement" "cf_free" {
34+
subaccount_id = btp_subaccount.project.id
35+
service_name = "cloudfoundry"
36+
plan_name = "free"
37+
amount = 1
3838
}
3939

4040
data "btp_subaccount_environments" "available_environments" {
@@ -45,7 +45,7 @@ data "btp_subaccount_environments" "available_environments" {
4545
# Creation of Cloud Foundry environment
4646
###############################################################################################
4747
resource "btp_subaccount_environment_instance" "cloudfoundry" {
48-
depends_on = [ btp_subaccount_entitlement.cf_free ]
48+
depends_on = [btp_subaccount_entitlement.cf_free]
4949
subaccount_id = btp_subaccount.project.id
5050
name = local.subaccount_cf_org
5151
landscape_label = terraform_data.cf_landscape_label.output

0 commit comments

Comments
 (0)