diff --git a/aws/resource_aws_ssm_activation.go b/aws/resource_aws_ssm_activation.go index 36c6d49a70b7..a6c666dc33c2 100644 --- a/aws/resource_aws_ssm_activation.go +++ b/aws/resource_aws_ssm_activation.go @@ -11,6 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/helper/validation" "github.com/terraform-providers/terraform-provider-aws/aws/internal/keyvaluetags" + iamwaiter "github.com/terraform-providers/terraform-provider-aws/aws/internal/service/iam/waiter" ) func resourceAwsSsmActivation() *schema.Resource { @@ -102,15 +103,19 @@ func resourceAwsSsmActivationCreate(d *schema.ResourceData, meta interface{}) er // Retry to allow iam_role to be created and policy attachment to take place var resp *ssm.CreateActivationOutput - err := resource.Retry(30*time.Second, func() *resource.RetryError { + err := resource.Retry(iamwaiter.PropagationTimeout, func() *resource.RetryError { var err error resp, err = ssmconn.CreateActivation(activationInput) - if err != nil { + if isAWSErr(err, "ValidationException", "Not existing role") { return resource.RetryableError(err) } + if err != nil { + return resource.NonRetryableError(err) + } + return nil })