-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared.tf
32 lines (29 loc) · 1.26 KB
/
shared.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
################################################################################
# Load Vendor Corp Shared Infra
################################################################################
module "shared" {
source = "git::ssh://[email protected]/vendorcorp/terraform-shared-infrastructure.git?ref=v1.2.0"
}
################################################################################
# Load Vendor Corp Private Infra
################################################################################
module "shared_private" {
source = "git::ssh://[email protected]/vendorcorp/terraform-shared-private-infrastructure.git?ref=v1.5.0"
environment = var.environment
}
################################################################################
# Connect to our k8s Cluster
################################################################################
provider "kubernetes" {
config_path = "~/.kube/config"
config_context = module.shared.eks_cluster_arn
}
################################################################################
# Helm Provider
################################################################################
provider "helm" {
kubernetes {
config_path = "~/.kube/config"
config_context = module.shared.eks_cluster_arn
}
}