-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcorral.tf
More file actions
21 lines (20 loc) · 817 Bytes
/
corral.tf
File metadata and controls
21 lines (20 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
variable "corral_name" {} // name of the corral being created
variable "corral_user_id" {} // how the user is identified (usually github username)
variable "corral_public_key" {} // The corrals public key. This should be installed on every node.
variable "corral_private_key" {} // The corrals private key. This should be installed on every node to be able to have root access, as aws does not allow this by default.
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_session_token" {
type = string
default = ""
}
variable "aws_region" {}
variable "aws_ami" {}
variable "aws_ssh_user" {}
variable "aws_security_group" {}
variable "aws_vpc" {}
variable "aws_subnet" {}
variable "instance_type" {}
variable "replace_count" {}
variable "kubeconfig" {}
variable "node_token" {}