infra-dapps/variables.tf

59 lines
1.5 KiB
HCL

/* GENERAL --------------------------------------*/
variable "hosts_subdomain" {
description = "Domain for hosts entries."
default = "hosts"
}
variable "public_domain" {
description = "Public DNS Domain address"
default = "dap.ps"
}
/* ENVIRONMENT ----------------------------------*/
variable "group" {
description = "Name of Ansible group"
default = "dap-ps-dev"
}
variable "env" {
description = "Name of environment to create"
default = "dapps"
}
variable "image_name" {
description = "Name of AMI image to use."
default = "ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20190212.1"
}
variable "ssh_user" {
description = "Default user to use when accesing host via SSH."
default = "ubuntu"
}
variable "stack_name" {
description = "Elastic Beanstalk stack, e.g. Docker, Go, Node, Java, IIS."
default = "64bit Amazon Linux 2018.03 v4.12.0 running Node.js"
/* http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html */
}
/* DEV Dap.ps -----------------------------------*/
variable "dap_ps_app_bucket_name" {
description = "Name of bucket to which we deploy the dap.ps dapp"
default = "dev-dap-ps-app"
}
/* SES FORWARDER --------------------------------*/
variable "ses_forwarder_bucket_name" {
description = "Name of bucket to use for storing forwarded emails"
default = "ses-forwarder-emails"
}
variable "ses_forwarder_admin_account_arn" {
description = "Name of bucket to use for storing forwarded emails"
default = "arn:aws:iam::760668534108:user/jakubgs"
}