From 56d9eefac18632aa583b8c1dd5744ef7cc6807e1 Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Thu, 21 Jun 2018 09:55:04 -0400 Subject: [PATCH] data-source/aws_rds_cluster: Prevent panic when CloudWatch logs are enabled --- aws/data_source_aws_rds_cluster.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aws/data_source_aws_rds_cluster.go b/aws/data_source_aws_rds_cluster.go index 6fea1159112..4ef0742fdd2 100644 --- a/aws/data_source_aws_rds_cluster.go +++ b/aws/data_source_aws_rds_cluster.go @@ -58,6 +58,12 @@ func dataSourceAwsRdsCluster() *schema.Resource { Computed: true, }, + "enabled_cloudwatch_logs_exports": { + Type: schema.TypeList, + Computed: true, + Elem: &schema.Schema{Type: schema.TypeString}, + }, + "endpoint": { Type: schema.TypeString, Computed: true,