Skip to content

Commit 50d8ef8

Browse files
committed
chore: fixes
1 parent af8dc81 commit 50d8ef8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

released/inside-track-2024/main.tf renamed to released/SAP-Inside-Tracks/SITBLR2024/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
###############################################################################################
4-
# This is the Terraform script for the BTP_200 Learning Journey. In this script you will create
4+
# This is the Terraform script for the SAP Insidetrack event. In this script you will create
55
# the infrastructure for the development of an SAP extension project
66
# The script will do the following
77
# - create a new subaccount (if the subaccount id is not set)

released/inside-track-2024/provider.tf renamed to released/SAP-Inside-Tracks/SITBLR2024/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ provider "btp" {
1313
globalaccount = var.globalaccount
1414
username = var.btp_username
1515
password = var.btp_password
16-
idp = "<custom idp name>"
16+
idp = var.idp
1717
}

released/inside-track-2024/samples.tfvars renamed to released/SAP-Inside-Tracks/SITBLR2024/samples.tfvars

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
########################################################################
22
# Account settings
33
########################################################################
4-
globalaccount = "myglobalaccount"
4+
globalaccount = "inside-track-2023"
55
region = "us10"
66
subaccount_name = "learningjourney"
7+
idp = "<name of the custom identity provider>"
78

89

910
# Set the subaccount_id ro run the script in an existing subaccount,

released/inside-track-2024/variables.tf renamed to released/SAP-Inside-Tracks/SITBLR2024/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ variable "globalaccount" {
22
type = string
33
description = "The globalaccount subdomain where the sub account shall be created."
44
}
5-
variable "custom_idp" {
5+
variable "idp" {
66
type = string
77
description = "The custom identity provider for the subaccount."
8-
default = "aviss4yru-platform.accounts.ondemand.com"
8+
default = "aviss4yru.accounts.ondemand.com"
99
}
1010

1111
variable "subaccount_name" {

0 commit comments

Comments
 (0)