mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-09 07:33:58 -06:00
provider/aws: Raise the codebuild_project create timeout (#11777)
Found in testing that a timeout of 30 seconds didn't allow for the error message that codebuild wasn't supported in eu-west-2 Discussed this with @radeksimko and he suggested a timeout raise
This commit is contained in:
parent
bfbd5ad4e6
commit
6a44f258e6
@ -201,7 +201,7 @@ func resourceAwsCodeBuildProjectCreate(d *schema.ResourceData, meta interface{})
|
||||
}
|
||||
|
||||
var resp *codebuild.CreateProjectOutput
|
||||
err := resource.Retry(30*time.Second, func() *resource.RetryError {
|
||||
err := resource.Retry(2*time.Minute, func() *resource.RetryError {
|
||||
var err error
|
||||
|
||||
resp, err = conn.CreateProject(params)
|
||||
|
Loading…
Reference in New Issue
Block a user