文档

alicloud_imm_project

更新时间:
一键部署

Provides a Intelligent Media Management Project resource.

For information about Intelligent Media Management Project and how to use it, see What is Project.

-> NOTE: Available since v1.134.0.

Example Usage

Basic Usage

variable "name" {
  default = "tfexample"
}
resource "alicloud_ram_role" "role" {
  name        = var.name
  document    = <<EOF
  {
    "Statement": [
      {
        "Action": "sts:AssumeRole",
        "Effect": "Allow",
        "Principal": {
          "Service": [
            "imm.aliyuncs.com"
          ]
        }
      }
    ],
    "Version": "1"
  }
  EOF
  description = "this is a role test."
  force       = true
}
resource "alicloud_imm_project" "example" {
  project      = var.name
  service_role = alicloud_ram_role.role.name
}

Argument Reference

The following arguments are supported:

  • project - (Required, ForceNew) The name of Project.
  • service_role - (Optional) The service role authorized to the Intelligent Media Management service to access other cloud resources. Default value: AliyunIMMDefaultRole. You can also create authorization roles through the alicloud_ram_role.

Attributes Reference

The following attributes are exported:

  • id - The resource ID in terraform of Project. Its value is same as project.

Import

Intelligent Media Management Project can be imported using the id, e.g.

$ terraform import alicloud_imm_project.example <project>

  • 本页导读 (0)
文档反馈