forked from mitul777/rancher-server-creation-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
51 lines (40 loc) · 984 Bytes
/
vars.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
variable "name" {
description = "AWS Instance name tag"
}
variable "ami" {
type = string
default = "ami-0629230e074c580f2"
}
variable "instance_type" {
type = string
default = "t3a.xlarge"
}
variable "aws_region" {
default = "us-east-2a"
}
variable "subnet_id_for_ec2" {
description = "EC2 instance to be deployed in the subnet"
default = "subnet-6127e62d"
}
variable "vpc_security_group_id_for_ec2" {
description = "Security group to be attached to the EC2 instance"
default = "sg-c42018a9"
}
variable "rancher_version" {
description = "Rancher version to be installed"
}
variable "AWS_KEY_ID" {
description = "AWS KEY ID"
}
variable "AWS_SECRET_ACCESS_KEY" {
description = "SECRET KEY ID"
}
variable "AWS_REGION" {
description = "AWS REGION"
}
variable "AWS_DEFAULT_OUTPUT" {
description = "AWS DEFAULT OUTPUT"
}
variable "BTPASSWORD" {
description = "Bootstrap Password"
}