-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
66 lines (57 loc) · 1.42 KB
/
variables.tf
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
variable "region" {
description = "Your target AWS region"
default = "us-west-1"
type = string
}
variable "owner" {
description = "Owner of resources"
# default = "johndoe"
type = string
}
variable "key_data" {
description = "The key used to ssh into your AWS instance"
# default = {
# name = "johndoe"
# location = "~/.ssh/johndoe.pem"
# }
type = map(string)
}
variable "nginx_machine_type" {
description = "The AWS machine type for the NGINX instance"
default = "t2.medium"
type = string
}
variable "certbot" {
description = "Use certbot to automate cert generation for the NGINX instance"
default = false
type = bool
}
variable "nginx_plus_license" {
description = "Location of NGINX Plus license to be used in the NGINX instance"
# default = {
# key = "nginx_license/nginx-repo.key"
# cert = "nginx_license/nginx-repo.crt"
# }
type = map(string)
}
variable "upload_nginx_proxy_cache_web_server_config_files" {
description = "Upload NGINX Proxy Cache Web Server files"
default = true
type = bool
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
owners = ["099720109477"]
}