provider/aws: Fix test config for SES Receipt Rule (#14383)

This commit is contained in:
Radek Simko 2017-05-11 12:51:26 +02:00 committed by GitHub
parent e238981e9c
commit a846b1b3b0
1 changed files with 3 additions and 3 deletions

View File

@ -277,18 +277,18 @@ resource "aws_ses_receipt_rule" "actions" {
add_header_action {
header_name = "Added-By"
header_value = "Terraform"
position = 1
position = 2
}
add_header_action {
header_name = "Another-Header"
header_value = "First"
position = 0
position = 1
}
stop_action {
scope = "RuleSet"
position = 2
position = 3
}
}
`, srrsRandomInt)