Skip to content

Commit d7f54ed

Browse files
authored
provider/aws: Raise timeout for DHCP opts creation (hashicorp#15084)
1 parent a464e97 commit d7f54ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/providers/aws/resource_aws_vpc_dhcp_options.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func resourceAwsVpcDhcpOptionsCreate(d *schema.ResourceData, meta interface{}) e
126126
Pending: []string{"pending"},
127127
Target: []string{"created"},
128128
Refresh: resourceDHCPOptionsStateRefreshFunc(conn, d.Id()),
129-
Timeout: 1 * time.Minute,
129+
Timeout: 5 * time.Minute,
130130
}
131131
if _, err := stateConf.WaitForState(); err != nil {
132132
return fmt.Errorf(

0 commit comments

Comments
 (0)