diff --git a/main.tf b/main.tf index dfc1839..46dd1d0 100644 --- a/main.tf +++ b/main.tf @@ -9,15 +9,6 @@ module "ecr" { cd_user_arn = "${data.terraform_remote_state.common.codeship_arn}" } -/* - * Create Logentries log - */ -resource "logentries_log" "log" { - logset_id = "${data.terraform_remote_state.common.logentries_set_id}" - name = "${var.app_name}" - source = "token" -} - /* * Create Cloudwatch log group */ @@ -142,7 +133,6 @@ data "template_file" "task_def_hub" { docker_tag = "${var.docker_tag}" idp_display_name = "${var.idp_display_name}" idp_name = "${var.idp_name}" - logentries_key = "${logentries_log.log.token}" memcache_host1 = "${aws_elasticache_cluster.memcache.cache_nodes.0.address}" memcache_host2 = "${aws_elasticache_cluster.memcache.cache_nodes.1.address}" memory = "${var.memory}" diff --git a/task-def-hub.json b/task-def-hub.json index 893e060..db42f17 100644 --- a/task-def-hub.json +++ b/task-def-hub.json @@ -57,10 +57,6 @@ "name": "IDP_NAME", "value": "${idp_name}" }, - { - "name": "LOGENTRIES_KEY", - "value": "${logentries_key}" - }, { "name": "MEMCACHE_HOST1", "value": "${memcache_host1}"