File tree 3 files changed +5
-2
lines changed
internal/service/scheduler
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ ```release-note:bug
2
+ resource/aws_scheduler_schedule: Mark `arn` property of `dead_letter_config` as a required property
3
+ ```
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ func resourceSchedule() *schema.Resource {
154
154
Schema : map [string ]* schema.Schema {
155
155
"arn" : {
156
156
Type : schema .TypeString ,
157
- Optional : true ,
157
+ Required : true ,
158
158
ValidateDiagFunc : validation .ToDiagFunc (verify .ValidARN ),
159
159
},
160
160
},
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ The following arguments are optional:
107
107
108
108
#### dead_letter_config Configuration Block
109
109
110
- * ` arn ` - (Optional ) ARN of the SQS queue specified as the destination for the dead-letter queue.
110
+ * ` arn ` - (Required ) ARN of the SQS queue specified as the destination for the dead-letter queue.
111
111
112
112
#### ecs_parameters Configuration Block
113
113
You can’t perform that action at this time.
0 commit comments