Skip to content

Commit

Permalink
Merge pull request #6690 from david-wells-1/master
Browse files Browse the repository at this point in the history
remove maximum=1 for cloudwatch destination
  • Loading branch information
bflad authored Dec 3, 2018
2 parents 5c52076 + 8efd6bb commit 88f8e58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion aws/resource_aws_ses_event_destination.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ func resourceAwsSesEventDestination() *schema.Resource {
Type: schema.TypeSet,
Optional: true,
ForceNew: true,
MaxItems: 1,
ConflictsWith: []string{"kinesis_destination", "sns_destination"},
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Expand Down
6 changes: 6 additions & 0 deletions aws/resource_aws_ses_event_destination_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,12 @@ resource "aws_ses_event_destination" "cloudwatch" {
dimension_name = "dimension"
value_source = "emailHeader"
}
cloudwatch_destination {
default_value = "default"
dimension_name = "ses:source-ip"
value_source = "messageTag"
}
}
resource "aws_ses_event_destination" "sns" {
Expand Down

0 comments on commit 88f8e58

Please sign in to comment.