- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
An error occurred (AccessDenied) when calling the CreateStack operation: User: arn:aws:iam::812520856627:user/dimitris is not authorized to perform: cloudformation:CreateStack on resource: arn:aws:cloudformation:us-west-2:812520856627:stack/blog-stage/*
我试着在命令上运行它:
aws cloudformation create-stack --stack-name blog-stage --template-body file://$PWD/stack.yml --profile demo --region us-west-2
Resources:
AppNode:
Type: AWS::EC2::Instance
Properties:
InstanceType: t2.micro
ImageId: ami-0c579621aaac8bade
KeyName: jimapos
SecurityGroups:
- !Ref AppNodeSG
AppNodeSG:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: for the app nodes that allow ssh, http and docker ports
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: '80'
ToPort: '80'
CidrIp: 0.0.0.0/0
- IpProtocol: tcp
FromPort: '22'
ToPort: '22'
CidrIp: 0.0.0.0/0
最佳答案
您正在尝试针对未授权执行 cloudformation:CreateStack
的 User
dimitris 创建堆栈
收件人assign permission给用户转到https://console.aws.amazon.com/iam/home#/home -> 用户 -> 选择用户 -> 添加权限
尝试添加此政策与用户 dimitries。
示例授予创建和查看堆栈操作的示例策略
{
"Version":"2012-10-17",
"Statement":[{
"Effect":"Allow",
"Action":[
"cloudformation:CreateStack",
"cloudformation:DescribeStacks",
"cloudformation:DescribeStackEvents",
"cloudformation:DescribeStackResources",
"cloudformation:GetTemplate",
"cloudformation:ValidateTemplate"
],
"Resource":"*"
}]
}
你可以查看这个link为特定资源定制或重新制定政策。
您可以创建自定义策略,也可以附加下面现有的策略。
关于node.js - 调用CreateStack操作时发生错误(AccessDenied) :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57935589/
我正在尝试Serverless创建 AWS Lambda 并使用命令 serverless project create 创建项目时出现以下错误。 AccessDenied: User: arn:aw
我正在使用 CloudFormation Boto3 API 创建堆栈,使用 createStack API。如果我传递一个没有宏的模板,我就可以创建堆栈。 例如 - Resources: Buc
我正在使用 Cloudformation 模板通过 AzDo 管道在 SecretsManager 中创建 secret ,CFT 非常简单,如下 - AWSTemplateFormatVersion
在运行时 Node.js 6.10 中使用 lambda 函数 我正在尝试将客户端提供的 token (字符串)作为 ClientRequestToken 包含在对 createStack 的调用中。
我是一名优秀的程序员,十分优秀!