You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to create the CloudFormation service quota for stacks in an AWS account that has never been used with Service Quotas, the following error happens in Community::ServiceQuotas::CloudFormation resource type v0.1.0:
Error: Service-linked role creation access denied.
Even after adding the following policy to the execution role, it still did not work:
As a workaround, I have been able to create the service-linked role myself through the CLI beforehand: aws iam create-service-linked-role --aws-service-name servicequotas.amazonaws.com.
Because the servicequotas.amazonaws.com does not have MFA authenticated set to true, the resource provider making the call directly to IAM to create the service-linked role would be a possible solution.
The text was updated successfully, but these errors were encountered:
If you try to create the CloudFormation service quota for stacks in an AWS account that has never been used with Service Quotas, the following error happens in
Community::ServiceQuotas::CloudFormation
resource type v0.1.0:Even after adding the following policy to the execution role, it still did not work:
The CloudTrail event:
As a workaround, I have been able to create the service-linked role myself through the CLI beforehand:
aws iam create-service-linked-role --aws-service-name servicequotas.amazonaws.com
.Because the
servicequotas.amazonaws.com
does not have MFA authenticated set to true, the resource provider making the call directly to IAM to create the service-linked role would be a possible solution.The text was updated successfully, but these errors were encountered: