forked from aws-samples/terraform-aws-sap-netweaver-on-hana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tfvars.sample
66 lines (56 loc) · 2.39 KB
/
variables.tfvars.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT-0
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights to use, copy, modify,
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
# Generic variables
aws_region = "<region>"
enabled = true
#Tags and Naming
application_code = "<application_code>"
application_name = "<application_name>"
environment_type = "<environment>"
#Networking
vpc_id = "<vpc_id>"
subnet_ids = ["subnet_id_1", "subnet_id_2"]
dns_zone_name = "<dns_zone_name>"
customer_default_sg_id = "<default_security_group_id>"
# Operation System
ami_id = "<ami_id>"
ssh_key = "<key_pair_name>"
# Security
kms_key_arn = "<kms_key_id>"
default_instance_role = true
# SAP parameters
sid = "<sap_sid>"
high_availability = false
# HANA Database Parameters
hana_is_scale_out = false
hana_instance_type = "<instance_type>"
root_volume_size = <defaulted_to_50>
hana_disks_data_storage_type = "<gp2_or_io1>"
hana_disks_logs_storage_type = "<gp2_or_io1>"
hana_disks_backup_storage_type = "<st1>"
hana_disks_shared_storage_type = "<gp2_or_io1>"
hana_disks_shared_size = <defaulted_to_512>
hana_disks_usr_sap_storage_type = "<gp2_or_io1>"
hana_disks_usr_sap_storage_size = <defaulted_to_50>
# Netweaver Application Servers Parameters
ascs_instance_type = "<instance_type>"
as_instance_type = "<instance_type>"
as_instance_count = 1
efs_sapmnt = true
ascs_root_volume_size = <defaulted_to_50>
app_server_root_volume_size = <defaulted_to_50>