Skip to content

Commit

Permalink
Merge pull request #166 from asfadmin/rew/add-teacache-switch-v17
Browse files Browse the repository at this point in the history
Add `deploy_cumulus_distribution` variable to cumulus module
  • Loading branch information
lindsleycj authored Oct 9, 2023
2 parents 97bdb65 + 2fc533f commit 51f9aa3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

* Add `deploy_cumulus_distribution` variable to cumulus module
* Update build Dockerfile to create an entry in /etc/passwd for the user building
the image. It allows the `setup_jwt_cookie.sh` script to be run inside the
container.
Expand Down Expand Up @@ -31,6 +32,9 @@ Error: Cycle: module.cumulus.module.archive.aws_lambda_function.publish_pdrs (de
Error: Cycle: module.cumulus.module.archive.aws_lambda_function.publish_granules (destroy), module.cumulus.module.archive.aws_cloudwatch_log_group.publish_granules_logs (destroy)
```

## v15.0.3.4

* Add `deploy_cumulus_distribution` variable to cumulus module

## v15.0.3.3

Expand Down
1 change: 1 addition & 0 deletions cumulus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ module "cumulus" {
api_gateway_stage = var.MATURITY
log_destination_arn = var.log_destination_arn

deploy_cumulus_distribution = var.deploy_cumulus_distribution
deploy_distribution_s3_credentials_endpoint = var.deploy_distribution_s3_credentials_endpoint

additional_log_groups_to_elk = var.additional_log_groups_to_elk
Expand Down
6 changes: 6 additions & 0 deletions cumulus/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,12 @@ variable "urs_url" {
default = "https://uat.urs.earthdata.nasa.gov"
}

variable "deploy_cumulus_distribution" {
description = "If true, does not deploy the TEA distribution API"
type = bool
default = false
}

variable "deploy_distribution_s3_credentials_endpoint" {
description = "Whether or not to include the S3 credentials endpoint in the Thin Egress App"
type = bool
Expand Down

0 comments on commit 51f9aa3

Please sign in to comment.