6f8a94d2fd458f306b4570d91f0cf7982cca3bfc
[iec.git] / src / foundation / microk8s / variable.tf
1 variable "aws_region" {
2   description = "aws_region"
3   default     = "us-east-2"
4 }
5
6 variable "aws_instance" {
7   description = "instance_type"
8   default     = "t2.small"
9 }
10
11 variable "aws_ami" {
12   description = "aws_ami"
13   default     = "ami-026141f3d5c6d2d0c"
14 }
15
16 variable "aws_subnet_id" {
17   description = "subnet_id"
18   default     = "<insertsubnetID>"
19 }
20
21 variable "vpc_id" {
22   description = "vpc_id"
23   default     = "<insertVpcID>"
24 }
25
26 variable "access_key" {
27   description = "access_key"
28   default     = "<insertAccessKey>"
29 }
30
31 variable "secret_key" {
32   description = "secret_key"
33   default     = "<insertSecretKey>"
34 }
35