-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathterraform.tfvars.template
68 lines (48 loc) · 2.4 KB
/
terraform.tfvars.template
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
# Region of the Tenancy
region = "<region>"
# OCID of the Tenancy
tenancy_ocid = "<tenancy_ocid>"
# The user OCID (https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#five)
user_ocid = "<user_ocid>"
# OCID of the compartment where creating network resources
network_compartment_id = "<network_compartment_id>"
# OCID of the VCN to use for configuring a Cloud Native SFTP
# Required when using an existing VCN
vcn_id = "<vcn_id>"
# OCID of the subnet (public) where the Network Load Balancer is instantiated
# Required when using an existing VCN
lb_subnet_id = "<lb_subnet_id>"
# OCID of the subnet (private) where SFTP servers are instantiated
# Required when using an existing VCN
servers_subnet_id = "<servers_subnet_id>"
# The CIDR of the VCN to create for configuring a Cloud Native SFTP
# Required when using a new VCN
vcn_cidr = "<vcn_cidr>"
# The CIDR of the subnet (public) to create for the Network Load Balancer
# Required when using a new VCN
lb_subnet_cidr = "<lb_subnet_cidr>"
# The CIDR of the subnet (private) to create for the SFTP servers
# Required when using a new VCN
servers_subnet_cidr = "<servers_subnet_cidr>"
# OCID of the compartment designated for S3 Compatibility API
s3_compatibility_compartment_id = "<s3_compatibility_compartment_id>"
# The name of the bucket, in designated S3 Compatibility compartment, where to store files
bucket_name = "<bucket_name>"
# OCID of the compartment where creating the Network Load Balancer
lb_compartment_id = "<lb_compartment_id>"
# OCID of the compartment where creating the SFTP servers
servers_compartment_id = "<servers_compartment_id>"
# The OCID of the image used for SFTP servers Compute instances
servers_image_id = "<servers_image_id>"
# The number of SFTP servers to istantiate
servers_count = "<servers_count>"
# The public key, in OpenSSH format, allowed for connecting to SFTP servers Compute instances through SSH
servers_ssh_authorized_keys="<servers_ssh_authorized_keys>"
# The name of the SFTP user
sftp_user_name = "<sftp_user_name>"
# The public key, in OpenSSH format, allowed for connecting to SFTP
sftp_user_ssh_authorized_keys="<sftp_user_ssh_authorized_keys>"
# OCID of the compartment where creating OCI Notifications and Events resources
notifications_compartment_id = "<notifications_compartment_id>"
# The mail recipient of the messages about SFTP files changes
notifications_email = "<notifications_email>"