Skip to content

Commit 6af60be

Browse files
revert temp
1 parent d103d4e commit 6af60be

File tree

1 file changed

+14
-22
lines changed

1 file changed

+14
-22
lines changed

terraform.tfvars

Lines changed: 14 additions & 22 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 = true
5+
enable_vpc = false
66

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

1313
# Create an EKS cluster for running Comet
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
14+
enable_eks = false
2215

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

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

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

3225
# Create EKS nodegroups for MPM compute
3326
enable_mpm_infra = false
@@ -36,16 +29,16 @@ enable_mpm_infra = false
3629
#### Global ####
3730
################
3831
# Region to launch resources in
39-
region = "us-east-2"
32+
region = "us-east-1"
4033

4134
# Name for Comet environment, for use in resource naming
4235
environment = "prod"
4336

4437
# 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
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"]
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"]
4942

5043
#######################
5144
#### Module inputs ####
@@ -57,24 +50,23 @@ environment = "prod"
5750

5851
#### comet_ec2_alb ####
5952
# If setting enable_ec2_alb, specify the ARN of an SSL certificate for the HTTPS listener
60-
# ssl_certificate_arn = null
53+
ssl_certificate_arn = null
6154

6255
#### comet_eks ####
6356
#
64-
eks_aws_cloudwatch_metrics = false
6557

6658
#### comet_elasticache ####
6759
# If setting enable_elasticache with existing compute, set the variable below to specify an SG that connections will be allowed from
68-
# elasticache_allow_from_sg = "sg-012345abcdefghijkl"
60+
elasticache_allow_from_sg = "sg-012345abcdefghijkl"
6961
## Set the following to enable the auth token for Redis
7062
#elasticache_transit_encryption = true
7163
#elasticache_auth_token = "your-cometml-redis-token"
7264

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

7971
#### comet_s3 ####
8072
# If setting enable_s3, specify the bucket name below

0 commit comments

Comments
 (0)