-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathterraform.tfvars.example
73 lines (42 loc) · 1.1 KB
/
terraform.tfvars.example
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
67
68
69
70
71
72
73
# Copyright (c) 2019, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
# provider identity parameters
api_fingerprint = ""
api_private_key_path = ""
region = "us-phoenix-1"
tenancy_id = ""
user_id = ""
# general oci parameters
compartment_id = ""
label_prefix = "dev"
# network parameters
availability_domain = 1
bastion_access = ["anywhere"]
ig_route_id = ""
netnum = 30
newbits = 14
vcn_id = ""
bastion_image_id = "Autonomous"
bastion_os_version = "7.9"
bastion_shape = {
shape="VM.Standard.E4.Flex",
ocpus=1,
memory=4,
boot_volume_size=50
}
bastion_state= "RUNNING"
bastion_timezone = "Australia/Sydney"
bastion_type = "public"
ssh_public_key = ""
ssh_public_key_path = ""
upgrade_bastion = false
# notification
enable_bastion_notification = false
bastion_notification_endpoint = ""
bastion_notification_protocol = "EMAIL"
bastion_notification_topic = "bastion"
freeform_tags = {
access = "public"
environment = "dev"
role = "bastion"
}