Skip to content

Commit

Permalink
ForceNew for task set network configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dmahfigma committed Jul 28, 2021
1 parent 06f604c commit 8b95382
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aws/resource_aws_ecs_task_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,23 @@ func resourceAwsEcsTaskSet() *schema.Resource {
Type: schema.TypeSet,
MaxItems: 5,
Optional: true,
ForceNew: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
},
"subnets": {
Type: schema.TypeSet,
MaxItems: 16,
Required: true,
ForceNew: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
},
"assign_public_ip": {
Type: schema.TypeBool,
Optional: true,
Default: false,
ForceNew: true,
},
},
},
Expand Down

0 comments on commit 8b95382

Please sign in to comment.