-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
93 lines (79 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
variable "region" {
description = "Your target AWS region"
default = "us-west-1"
type = string
}
variable "owner" {
description = "Owner of resources"
default = "NGINX APIg demo runner"
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 "r53_zone" {
description = "R53 hosted zone ID"
type = string
}
variable "nginx_api_gateway_machine_type" {
description = "The AWS machine type for your NGINX API gateway"
default = "t2.medium"
type = string
}
variable "nginx_api_gateway_fqdn" {
description = "NGINX API gateway FQDN"
type = string
}
variable "nginx_plus_license" {
description = "Location of NGINX Plus license to be used in agent instance"
# default = {
# key = "nginx_license/nginx-repo.key"
# cert = "nginx_license/nginx-repo.crt"
# }
type = map(string)
}
variable "nginx_api_gateway_certbot" {
description = "Use certbot to automate cert generation for the NGINX API gateway"
default = false
type = bool
}
variable "upload_nginx_api_gateway_config_files" {
description = "Upload NGINX API gateway sample files"
default = true
type = bool
}
variable "backend_api_machine_type" {
description = "The AWS machine type for your API workload backend"
default = "t2.medium"
type = string
}
variable "backend_api_fqdn" {
description = "Backend API gateway FQDN"
type = string
}
variable "backend_api_certbot" {
description = "Use certbot to automate cert generation for the backend API"
default = false
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"]
}