/ variables.tf
variables.tf
 1  /* GENERAL --------------------------------------*/
 2  
 3  variable "hosts_subdomain" {
 4    description = "Domain for hosts entries."
 5    default     = "hosts"
 6  }
 7  
 8  variable "public_domain" {
 9    description = "Public DNS Domain address"
10    default     = "dap.ps"
11  }
12  
13  /* ENVIRONMENT ----------------------------------*/
14  
15  variable "group" {
16    description = "Name of Ansible group"
17    default     = "dap-ps-dev"
18  }
19  
20  variable "env" {
21    description = "Name of environment to create"
22    default     = "dapps"
23  }
24  
25  variable "ssh_user" {
26    description = "Default user to use when accesing host via SSH."
27    default     = "ubuntu"
28  }
29  
30  variable "stack_name" {
31    description = "Elastic Beanstalk stack, e.g. Docker, Go, Node, Java, IIS."
32    default     = "64bit Amazon Linux 2 v5.6.0 running Node.js 14"
33    /* http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html */
34  }
35  
36  /* DEV Dap.ps -----------------------------------*/
37  
38  variable "dap_ps_app_bucket_name" {
39    description = "Name of bucket to which we deploy the dap.ps dapp"
40    default     = "dev-dap-ps-app"
41  }
42  
43  /* SES FORWARDER --------------------------------*/
44  
45  variable "ses_forwarder_bucket_name" {
46    description = "Name of bucket to use for storing forwarded emails"
47    default     = "ses-forwarder-emails"
48  }
49  
50  variable "ses_forwarder_admin_account_arn" {
51    description = "Name of bucket to use for storing forwarded emails"
52    default     = "arn:aws:iam::760668534108:user/jakubgs"
53  }