-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterraform.tfvars.sample
48 lines (33 loc) · 1.41 KB
/
terraform.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
/* https://www.digitalocean.com/community/tutorials/how-to-use-the-digitalocean-api-v2#how-to-generate-a-personal-access-token */
do_token = ""
/* project name which will be used for the Droplet names */
project = ""
/* region choices include: nyc1, sfo2, fra1 */
region = ""
/* some image slugs include: ubuntu-16-04-x64, ubuntu-14-04-x64.
Keep in mind the associated Ansible playbook was written to be executed on Ubuntu. */
image_slug = "ubuntu-16-04-x64"
/* SSH key IDs. Single id -> "nnnnnnn" or multiple keys -> "nnnnnnn,nnnnnn" */
keys = ""
/* Path to private key file on your local system. eg: /home/user/.ssh/id_rsa) */
private_key_path = ""
/* You can execute the following to grab your SSH key fingerprint - ssh-keygen -lf ~/.ssh/id_rsa -E md5 */
ssh_fingerprint = ""
/* cat your id_ras.pub file */
public_key = ""
/* Enter the number of web nodes you wish to provision */
hp_count = "3"
/* Enter in the honeypot image id or image slug */
hp_image = "ubuntu-16-04-x64" # testing to see if I can use a snapshot 20652639
/* Enter in Droplet size for backend nodes */
hp_size = "1gb"
/* Enter in the NFS host size */
nfs_host_size = "1gb"
/* Enter in the volume size you want to provision in GBs */
volume_size = "50"
/* Enter in the probe count */
probe_count = "3"
/* Enter in the probe image id or image slug */
probe_image = "ubuntu-16-04-x64"
/* Enter in the Droplet size for your probe nodes */
probe_size = "1gb"