-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathvariables.tf
82 lines (63 loc) · 2.32 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
71
72
73
74
75
76
77
78
79
80
# ################################################################################
# # Default Variables
# ################################################################################
variable "main-region" {
type = string
default = "us-west-2"
}
# ################################################################################
# # EKS Cluster Variables
# ################################################################################
variable "cluster_name" {
type = string
default = "dominion-cluster"
}
variable "rolearn" {
description = "Add admin role to the aws-auth configmap"
default = "arn:aws:iam::322266404742:role/terraform-create-role"
}
# ################################################################################
# # ALB Controller Variables
# ################################################################################
variable "env_name" {
type = string
default = "dev"
}
################################################################################
# EKS Cluster Variables for grafana and prometheus deployment
################################################################################
# variable "cluster_endpoint" {
# type = string
# sensitive = true
# description = "The cluster endpoint"
# }
# variable "cluster_certificate_authority_data" {
# type = string
# sensitive = true
# description = "The Cluster certificate data"
# }
# variable "oidc_provider_arn" {
# description = "OIDC Provider ARN used for IRSA "
# type = string
# sensitive = true
# }
# ################################################################################
# # VPC Variables
# ################################################################################
# variable "vpc_id" {
# description = "VPC ID which Load balancers will be deployed in"
# type = string
# }
# variable "private_subnets" {
# description = "A list of private subnets"
# type = list(string)
# }
################################################################################
# AWS SSO Variables
################################################################################
# variable "sso_admin_group_id" {
# description = "AWS_SSO Admin Group ID"
# type = string
# sensitive = true
# default = "b4f8f4f8-e011-7046-0637-993dc10edd76"
# }