Skip to content

Commit 8ccab27

Browse files
authored
Changed region to eu10 for mission 3252 (#264)
1 parent 2edb44f commit 8ccab27

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

released/discovery_center/mission_3252/provider.tf

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

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

released/discovery_center/mission_3252/samples.tfvars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# ------------------------------------------------------------------------------------------------------
44
# Your global account subdomain
55
globalaccount = "your global account id goes here eg. 0645xxxx-1xxx-4xxx-bxxx-4xxxxxxxxxxx"
6-
region = "eu30"
6+
region = "eu10"
77
subaccount_name = "DC Mission 3252 - Get Started with SAP BTP, Kyma runtime creating a Hello-World Function"
88

99
kyma_instance = {
1010
name = "my-kyma-environment"
11-
region = "europe-west3"
11+
region = "eu-central-1"
1212
machine_type = "mx5.xlarge"
1313
auto_scaler_min = 3
1414
auto_scaler_max = 20

released/discovery_center/mission_3252/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ variable "subaccount_name" {
1616
variable "region" {
1717
type = string
1818
description = "The region where the project account shall be created in."
19-
default = "eu30"
19+
default = "eu10"
2020
}
2121

2222
# CLI server
@@ -50,7 +50,7 @@ variable "kyma_instance" {
5050
description = "Your Kyma environment configuration"
5151
default = {
5252
name = "my-kyma-environment"
53-
region = "europe-west3"
53+
region = "eu-central-1"
5454
machine_type = "mx5.xlarge"
5555
auto_scaler_min = 3
5656
auto_scaler_max = 20

0 commit comments

Comments
 (0)