-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (48 loc) · 1.84 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
# ---------------------------------------------------------------------------------------------------------------------
# REQUIRED PARAMETERS
# These parameters must be supplied when consuming this module.
# ---------------------------------------------------------------------------------------------------------------------
variable "my_route_53_domain" {
description = "Domain name configured in Route 53 (or other) with A record for Elastic IP."
type = string
}
variable "my_local_ip" {
description = "Public IP address where the user is working (for opening up security groups)."
type = string
}
variable "my_key_pair" {
description = "ID of the key pair for use in Nebari EC2 (create and update .tfvars before running Terraform)."
type = string
}
variable "account_id" {
description = "The AWS account where all resources will be launched."
type = string
}
variable "region" {
description = "The AWS region where all resources will be launched."
type = string
}
# ---------------------------------------------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# These parameters have reasonable defaults.
# ---------------------------------------------------------------------------------------------------------------------
variable "nebari_ec2_size" {
description = "Set instance size for Nebari sandbox"
type = string
default = "t3.large"
}
variable "nebari_disk_size" {
description = "Set root disk size for Nebari sandbox (in GiB)"
type = string
default = "100"
}
variable "aws_cli_profile" {
description = "Configure AWS CLI profile to use (if not default)."
type = string
default = "default"
}
variable "git_repos" {
description = "Repositories to clone on init."
type = string
default = ""
}