热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

EFSMountTargetcreationFailed:Userisnotauthorizedtoperformthataction

TerraformVersionTerraformv0.10.6AffectedResource(s)Pleas


Terraform Version

Terraform v0.10.6

Affected Resource(s)

Please list the resources as a list, for example:
- aws_efs_file_system
- aws_efs_mount_target

Terraform Configuration Files

1
2
3
4
5
6
7
8
9
10
11
12
13
resource "aws_efs_file_system" "fgw-shared-filesystem"

{

  tags

  {

        "Name"         = "fgw-cs-${var.codesplitt}-shared-filesystem-regression"

  }

}

resource "aws_efs_mount_target" "fgw-shared-filesystem-moun-target"

{

  file_system_id        = "${aws_efs_file_system.fgw-shared-filesystem.id}"

  subnet_id             = "subnet-ca9dcca2"

  security_groups       = ["sg-0b30c561"]

}


Expected Behavior

Mount target should be created.

Actual Behavior

Mount target is not created and i don't get a clear reason which permission is missing !

1
2
3
4
5
6
1 error(s) occurred:



* aws_efs_mount_target.fgw-shared-filesystem-moun-target: 1 error(s) occurred:



* aws_efs_mount_target.fgw-shared-filesystem-moun-target: AccessDeniedException: User is not authorized to perform that action on the specified resource

        status code: 403, request id: 35027496-9f9b-11e7-b53e-45fe21728a81


Steps to Reproduce



  1. 1
    terraform apply


Important Factoids

The used policy is the following. I granted full access to EFS, but it still not working:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{

    "Version": "2012-10-17",

    "Statement": [

        {

            "Sid": "Stmt1504192188000",

            "Effect": "Allow",

            "Action": [

                "ec2:*",

                "route53:*",

                "rds:*",

                "elasticfilesystem:*"

            ],

            "Resource": [

                "*"

            ]

        }

    ]

}

该提问来源于开源项目:hashicorp/terraform-provider-aws

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.



If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!


   



推荐阅读
  • Scala 实现 UTF-8 编码属性文件读取与克隆
    本文介绍如何使用 Scala 以 UTF-8 编码方式读取属性文件,并实现属性文件的克隆功能。通过这种方式,可以确保配置文件在多线程环境下的一致性和高效性。 ... [详细]
  • 从 .NET 转 Java 的自学之路:IO 流基础篇
    本文详细介绍了 Java 中的 IO 流,包括字节流和字符流的基本概念及其操作方式。探讨了如何处理不同类型的文件数据,并结合编码机制确保字符数据的正确读写。同时,文中还涵盖了装饰设计模式的应用,以及多种常见的 IO 操作实例。 ... [详细]
  • 深入解析Spring Cloud Ribbon负载均衡机制
    本文详细介绍了Spring Cloud中的Ribbon组件如何实现服务调用的负载均衡。通过分析其工作原理、源码结构及配置方式,帮助读者理解Ribbon在分布式系统中的重要作用。 ... [详细]
  • 本文介绍如何使用阿里云的fastjson库解析包含时间戳、IP地址和参数等信息的JSON格式文本,并进行数据处理和保存。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • 技术分享:从动态网站提取站点密钥的解决方案
    本文探讨了如何从动态网站中提取站点密钥,特别是针对验证码(reCAPTCHA)的处理方法。通过结合Selenium和requests库,提供了详细的代码示例和优化建议。 ... [详细]
  • 深入理解Tornado模板系统
    本文详细介绍了Tornado框架中模板系统的使用方法。Tornado自带的轻量级、高效且灵活的模板语言位于tornado.template模块,支持嵌入Python代码片段,帮助开发者快速构建动态网页。 ... [详细]
  • 1.如何在运行状态查看源代码?查看函数的源代码,我们通常会使用IDE来完成。比如在PyCharm中,你可以Ctrl+鼠标点击进入函数的源代码。那如果没有IDE呢?当我们想使用一个函 ... [详细]
  • CentOS7源码编译安装MySQL5.6
    2019独角兽企业重金招聘Python工程师标准一、先在cmake官网下个最新的cmake源码包cmake官网:https:www.cmake.org如此时最新 ... [详细]
  • 本文详细解析了Python中的os和sys模块,介绍了它们的功能、常用方法及其在实际编程中的应用。 ... [详细]
  • 本文介绍了如何通过 Maven 依赖引入 SQLiteJDBC 和 HikariCP 包,从而在 Java 应用中高效地连接和操作 SQLite 数据库。文章提供了详细的代码示例,并解释了每个步骤的实现细节。 ... [详细]
  • andr ... [详细]
  • 本文详细介绍了如何使用Spring Boot进行高效开发,涵盖了配置、实例化容器以及核心注解的使用方法。 ... [详细]
  • 本文详细介绍了Java中org.w3c.dom.Text类的splitText()方法,通过多个代码示例展示了其实际应用。该方法用于将文本节点在指定位置拆分为两个节点,并保持在文档树中。 ... [详细]
author-avatar
拍友2602924913
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有