-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
57 lines (47 loc) · 1.67 KB
/
main.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
###############################################################################
# Providers
###############################################################################
provider "aws" {
region = var.vpc_region
shared_credentials_file = "~/.aws/credentials"
profile = "default"
}
###############################################################################
# Base Network
###############################################################################
module "vpc" {
source = "./modules/network/vpc"
vpc_region = var.vpc_region
vpc_name = var.vpc_name
vpc_cidr_block = var.vpc_cidr_block
}
module "public_subnets" {
source = "./modules/network/sn-public"
az_count = var.az_count
availability_zones = var.availability_zones
vpc_id = module.vpc.id
cluster_name = "eks_cluster_using_terraform"
}
terraform {
backend "s3" {
bucket = "terraform-backend-in-s3-for-eks-with-terraform"
encrypt = true
key = "terraform.tfstate"
region = "us-east-1" # hard-coded because vars are not allowed
}
}
###############################################################################
# Kubernetes
###############################################################################
module "eks" {
source = "./modules/compute/eks"
region = var.vpc_region
subnet_ids = module.public_subnets.public_subnet_ids
}
###############################################################################
# Ingress
###############################################################################
module "ingress" {
source = "./modules/network/ingress"
cluster_name = module.eks.cluster_name
}