-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariable.tf
More file actions
46 lines (36 loc) · 814 Bytes
/
variable.tf
File metadata and controls
46 lines (36 loc) · 814 Bytes
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
variable "aws_vpc_name" {
type = "string"
description = "The AWS VPC name"
}
variable "aws_region" {
type = "string"
}
variable "aws_zone" {
type = "string"
}
variable "aws_server_size" {
type = "string"
description = "AWS instance sizing for the server"
}
variable "docker_image" {
type = "string"
description = "Docker image to instanciate the service"
}
variable "service_port" {
type = "string"
description = "Web Server default port"
}
variable "healthcheck_path" {
type = "string"
description = "Path to health check"
}
// Output variables
output "Server-DNS" {
value = "${module.computing.server-dns}"
}
output "VPC-id" {
value = "${module.networking.vpc_id}"
}
output "Healthcheck" {
value = "${module.computing.lb_helathcheck}"
}