Skip to content

Commit 2582055

Browse files
committed
fixed fmt formatting issues
1 parent 53860db commit 2582055

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

released/discovery_center/mission_4024/step1/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ locals {
55
subaccount_domain = "dcmission4024${local.random_uuid}"
66

77
# used (mandatory) services
8-
service_name__sap_build_apps = "sap-build-apps"
9-
service_name__sap_launchpad = "SAPLaunchpad"
10-
service_name__destination = "destination"
8+
service_name__sap_build_apps = "sap-build-apps"
9+
service_name__sap_launchpad = "SAPLaunchpad"
10+
service_name__destination = "destination"
1111
# optional, if custom idp is used
12-
service_name__sap_identity_services_onboarding = "sap-identity-services-onboarding"
12+
service_name__sap_identity_services_onboarding = "sap-identity-services-onboarding"
1313
}
1414

1515
# ------------------------------------------------------------------------------------------------------
@@ -38,7 +38,7 @@ data "btp_subaccount" "subaccount" {
3838
# ------------------------------------------------------------------------------------------------------
3939
# Entitle
4040
resource "btp_subaccount_entitlement" "sap_identity_services_onboarding" {
41-
count = var.custom_idp == "" ? 1 : 0
41+
count = var.custom_idp == "" ? 1 : 0
4242

4343
subaccount_id = data.btp_subaccount.dc_mission.id
4444
service_name = local.service_name__sap_identity_services_onboarding

released/discovery_center/mission_4024/step1/sample.tfvars

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ custom_idp = "<<tenant-id>>.accounts.ondemand.com"
66
# ------------------------------------------------------------------------------------------------------
77
# Account settings
88
# ------------------------------------------------------------------------------------------------------
9-
globalaccount = "your-globalaccount-subdomain"
10-
region = "us10"
9+
globalaccount = "your-globalaccount-subdomain"
10+
region = "us10"
1111

1212
# ------------------------------------------------------------------------------------------------------
1313
# Use case specific configuration
1414
# ------------------------------------------------------------------------------------------------------
15-
subaccount_admins = ["[email protected]"]
16-
launchpad_admins = ["[email protected]"]
17-
build_apps_admins = ["[email protected]", "[email protected]"]
18-
build_apps_developers = ["[email protected]", "[email protected]"]
19-
build_apps_registry_admin = ["[email protected]", "[email protected]"]
20-
build_apps_registry_developer = ["[email protected]", "[email protected]"]
15+
subaccount_admins = ["[email protected]"]
16+
launchpad_admins = ["[email protected]"]
17+
build_apps_admins = ["[email protected]", "[email protected]"]
18+
build_apps_developers = ["[email protected]", "[email protected]"]
19+
build_apps_registry_admin = ["[email protected]", "[email protected]"]
20+
build_apps_registry_developer = ["[email protected]", "[email protected]"]
2121

2222
# ------------------------------------------------------------------------------------------------------
2323
# Create tfvars file for the step 2

released/discovery_center/mission_4024/step2/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ terraform {
88
}
99

1010
provider "btp" {
11-
cli_server_url = var.cli_server_url
12-
globalaccount = var.globalaccount
11+
cli_server_url = var.cli_server_url
12+
globalaccount = var.globalaccount
1313
}

released/discovery_center/mission_4024_trial/step1/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ locals {
55
subaccount_domain = "dcmission4024${local.random_uuid}"
66

77
# used (mandatory) services
8-
service_name__sap_build_apps = "sap-build-apps"
9-
service_name__sap_launchpad = "SAPLaunchpad"
10-
service_name__destination = "destination"
8+
service_name__sap_build_apps = "sap-build-apps"
9+
service_name__sap_launchpad = "SAPLaunchpad"
10+
service_name__destination = "destination"
1111
# optional, if custom idp is used
12-
service_name__sap_identity_services_onboarding = "sap-identity-services-onboarding"
12+
service_name__sap_identity_services_onboarding = "sap-identity-services-onboarding"
1313
}
1414

1515
# ------------------------------------------------------------------------------------------------------
@@ -38,7 +38,7 @@ data "btp_subaccount" "subaccount" {
3838
# ------------------------------------------------------------------------------------------------------
3939
# Entitle
4040
resource "btp_subaccount_entitlement" "sap_identity_services_onboarding" {
41-
count = var.custom_idp == "" ? 1 : 0
41+
count = var.custom_idp == "" ? 1 : 0
4242

4343
subaccount_id = data.btp_subaccount.dc_mission.id
4444
service_name = local.service_name__sap_identity_services_onboarding

released/discovery_center/mission_4024_trial/step1/sample.tfvars

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# ------------------------------------------------------------------------------------------------------
22
# Account settings
33
# ------------------------------------------------------------------------------------------------------
4-
globalaccount = "your-globalaccount-subdomain"
5-
region = "us10"
4+
globalaccount = "your-globalaccount-subdomain"
5+
region = "us10"
66

77
# ------------------------------------------------------------------------------------------------------
88
# Use case specific configuration
99
# ------------------------------------------------------------------------------------------------------
10-
subaccount_admins = ["[email protected]"]
11-
launchpad_admins = ["[email protected]"]
12-
build_apps_admins = ["[email protected]", "[email protected]"]
13-
build_apps_developers = ["[email protected]", "[email protected]"]
14-
build_apps_registry_admin = ["[email protected]", "[email protected]"]
15-
build_apps_registry_developer = ["[email protected]", "[email protected]"]
10+
subaccount_admins = ["[email protected]"]
11+
launchpad_admins = ["[email protected]"]
12+
build_apps_admins = ["[email protected]", "[email protected]"]
13+
build_apps_developers = ["[email protected]", "[email protected]"]
14+
build_apps_registry_admin = ["[email protected]", "[email protected]"]
15+
build_apps_registry_developer = ["[email protected]", "[email protected]"]
1616

1717
# ------------------------------------------------------------------------------------------------------
1818
# Create tfvars file for the step 2

released/discovery_center/mission_4024_trial/step2/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ terraform {
88
}
99

1010
provider "btp" {
11-
cli_server_url = var.cli_server_url
12-
globalaccount = var.globalaccount
11+
cli_server_url = var.cli_server_url
12+
globalaccount = var.globalaccount
1313
}

0 commit comments

Comments
 (0)