Skip to content

terraform/webportal/ccdc #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: backstage_fargate
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/deployed/ccdc/backend.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- name: backend
image: cbiitssrepo/bento-backend:release
image: cbiitssrepo/ccdc-webservice:latest
essential: true
portMappings:
- protocol: tcp
Expand Down
113 changes: 0 additions & 113 deletions terraform/deployed/ccdc/etl.tf

This file was deleted.

8 changes: 0 additions & 8 deletions terraform/deployed/ccdc/etl.yml

This file was deleted.

2 changes: 1 addition & 1 deletion terraform/deployed/ccdc/frontend.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- name: frontend
image: cbiitssrepo/bento-frontend:latest
image: cbiitssrepo/ccdc-webportal:latest
essential: true
portMappings:
- protocol: tcp
Expand Down
50 changes: 0 additions & 50 deletions terraform/deployed/ccdc/route53.tf

This file was deleted.

11 changes: 6 additions & 5 deletions terraform/modules/elasticsearch/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ resource "aws_elasticsearch_domain" "es" {
snapshot_options {
automated_snapshot_start_hour = 23
}
log_publishing_options {
cloudwatch_log_group_arn = aws_cloudwatch_log_group.cloudwatch_log_group.arn
log_type = "INDEX_SLOW_LOGS"
}
// log_publishing_options {
// cloudwatch_log_group_arn = aws_cloudwatch_log_group.cloudwatch_log_group.arn
// log_type = "INDEX_SLOW_LOGS"
// }
tags = var.tags
}


/*
resource "aws_cloudwatch_log_group" "cloudwatch_log_group" {
name = "${var.stack_name}-${terraform.workspace}-es-log-group"
}
Expand Down Expand Up @@ -105,3 +105,4 @@ resource "aws_cloudwatch_log_resource_policy" "cloudwatch_policy" {
}
CONFIG
}
*/