Skip to content

Commit cf5962c

Browse files
Revert "revert temp"
This reverts commit a3e570d.
1 parent a3e570d commit cf5962c

File tree

1 file changed

+22
-14
lines changed

1 file changed

+22
-14
lines changed

terraform.tfvars

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#### Module toggles ####
33
########################
44
# Create a VPC to launch other resources in
5-
enable_vpc = false
5+
enable_vpc = true
66

77
# Create an EC2 instance for running Comet
88
enable_ec2 = false
@@ -11,16 +11,23 @@ enable_ec2 = false
1111
enable_ec2_alb = false
1212

1313
# Create an EKS cluster for running Comet
14-
enable_eks = false
14+
enable_eks = true
15+
eks_node_types = ["m6i.2xlarge"]
16+
# eks_mng_desired_size = 1
17+
# eks_mng_max_size = 2
18+
# eks_mng_disk_size = 50
19+
eks_druid_instance_type = "m7i.xlarge"
20+
eks_druid_node_count = 1
21+
eks_airflow_node_count = 1
1522

1623
# Create ElastiCache resources for running Comet Redis
17-
enable_elasticache = false
24+
enable_elasticache = true
1825

1926
# Create RDS resources for running Comet MySQL
20-
enable_rds = false
27+
enable_rds = true
2128

2229
# Create S3 resources for storing Comet objects
23-
enable_s3 = false
30+
enable_s3 = true
2431

2532
# Create EKS nodegroups for MPM compute
2633
enable_mpm_infra = false
@@ -29,16 +36,16 @@ enable_mpm_infra = false
2936
#### Global ####
3037
################
3138
# Region to launch resources in
32-
region = "us-east-1"
39+
region = "us-east-2"
3340

3441
# Name for Comet environment, for use in resource naming
3542
environment = "prod"
3643

3744
# If not setting enable_vpc to provision a VPC for the Comet resources, set the variables below to specify the existing VPC in which resources will be launched
38-
comet_vpc_id = "vpc-012345abcdefghijkl"
39-
availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c"]
40-
comet_public_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl"]
41-
comet_private_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl"]
45+
# comet_vpc_id = "vpc-012345abcdefghijkl"
46+
# availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c"]
47+
# comet_public_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl"]
48+
# comet_private_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl"]
4249

4350
#######################
4451
#### Module inputs ####
@@ -50,23 +57,24 @@ comet_private_subnets = ["subnet-012345abcdefghijkl", "subnet-012345abcdefghijkl
5057

5158
#### comet_ec2_alb ####
5259
# If setting enable_ec2_alb, specify the ARN of an SSL certificate for the HTTPS listener
53-
ssl_certificate_arn = null
60+
# ssl_certificate_arn = null
5461

5562
#### comet_eks ####
5663
#
64+
eks_aws_cloudwatch_metrics = false
5765

5866
#### comet_elasticache ####
5967
# If setting enable_elasticache with existing compute, set the variable below to specify an SG that connections will be allowed from
60-
elasticache_allow_from_sg = "sg-012345abcdefghijkl"
68+
# elasticache_allow_from_sg = "sg-012345abcdefghijkl"
6169
## Set the following to enable the auth token for Redis
6270
#elasticache_transit_encryption = true
6371
#elasticache_auth_token = "your-cometml-redis-token"
6472

6573
#### comet_rds ####
6674
# If setting enable_rds, specify the root password for RDS below, or leave null and enter at the prompt during apply
67-
rds_root_password = null
75+
rds_root_password = "christopher"
6876
# If setting enable_rds with existing compute, set the variable below to specify an SG that connections will be allowed from
69-
rds_allow_from_sg = "sg-012345abcdefghijkl"
77+
# rds_allow_from_sg = "sg-012345abcdefghijkl"
7078

7179
#### comet_s3 ####
7280
# If setting enable_s3, specify the bucket name below

0 commit comments

Comments
 (0)