generated from dabble-of-devops-bioanalyze/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
72 lines (56 loc) · 1.3 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
##################################################
# Variables
# This file has various groupings of variables
##################################################
##################################################
# AWS
##################################################
variable "region" {
type = string
default = "us-east-1"
description = "AWS Region"
}
variable "vpc_id" {
type = string
}
variable "subnet_id" {
type = string
}
variable "aws_key_pair_id" {
type = string
default = ""
}
variable "aws_security_group_id" {
type = string
default = ""
}
variable "ami_id" {
type = string
default = ""
}
variable "image_recipe_version" {
type = string
default = "1.0.0"
}
##################################################
# Software Version Variables
##################################################
variable "easybuild_version" {
type = string
default = "4.5.4"
}
variable "pcluster_versions" {
default = ["3.1.2", "3.2.0b1"]
}
##################################################
# ImageBuilder Variables
##################################################
variable "ec2_iam_role_name" {
type = string
description = "The EC2's IAM role name."
default = "svc-image-builder-role"
}
variable "ebs_root_vol_size" {
type = number
default = 35
}