alicloud.ecs.RamRoleAttachment
Explore with Pulumi AI
Provides a ECS Ram Role Attachment resource.
Mount RAM role.
For information about ECS Ram Role Attachment and how to use it, see What is Ram Role Attachment.
NOTE: Available since v1.250.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = alicloud.getZones({
availableDiskCategory: "cloud_efficiency",
availableResourceCreation: "VSwitch",
});
const defaultGetImages = alicloud.ecs.getImages({
mostRecent: true,
owners: "system",
});
const defaultGetInstanceTypes = Promise.all([_default, defaultGetImages]).then(([_default, defaultGetImages]) => alicloud.ecs.getInstanceTypes({
availabilityZone: _default.zones?.[0]?.id,
imageId: defaultGetImages.images?.[0]?.id,
}));
const defaultInteger = new random.index.Integer("default", {
min: 10000,
max: 99999,
});
const defaultRole = new alicloud.ram.Role("default", {
name: `${name}-${defaultInteger.result}`,
document: `\x09\x09{
\x09\x09\x09"Statement": [
\x09\x09\x09\x09{
\x09\x09\x09\x09\x09"Action": "sts:AssumeRole",
\x09\x09\x09\x09\x09"Effect": "Allow",
\x09\x09\x09\x09\x09"Principal": {
\x09\x09\x09\x09\x09\x09"Service": [
\x09\x09\x09\x09\x09\x09\x09"ecs.aliyuncs.com"
\x09\x09\x09\x09\x09\x09]
\x09\x09\x09\x09\x09}
\x09\x09\x09\x09}
\x09\x09 \x09],
\x09\x09\x09"Version": "1"
\x09\x09}
`,
force: true,
});
const defaultNetwork = new alicloud.vpc.Network("default", {
vpcName: `${name}-${defaultInteger.result}`,
cidrBlock: "192.168.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
vswitchName: `${name}-${defaultInteger.result}`,
vpcId: defaultNetwork.id,
cidrBlock: "192.168.192.0/24",
zoneId: _default.then(_default => _default.zones?.[0]?.id),
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {vpcId: defaultNetwork.id});
const defaultInstance = new alicloud.ecs.Instance("default", {
imageId: defaultGetImages.then(defaultGetImages => defaultGetImages.images?.[0]?.id),
instanceType: defaultGetInstanceTypes.then(defaultGetInstanceTypes => defaultGetInstanceTypes.instanceTypes?.[0]?.id),
securityGroups: [defaultSecurityGroup].map(__item => __item.id),
internetChargeType: "PayByTraffic",
internetMaxBandwidthOut: 10,
availabilityZone: defaultGetInstanceTypes.then(defaultGetInstanceTypes => defaultGetInstanceTypes.instanceTypes?.[0]?.availabilityZones?.[0]),
instanceChargeType: "PostPaid",
systemDiskCategory: "cloud_efficiency",
vswitchId: defaultSwitch.id,
instanceName: `${name}-${defaultInteger.result}`,
});
const defaultRamRoleAttachment = new alicloud.ecs.RamRoleAttachment("default", {
ramRoleName: defaultRole.id,
instanceId: defaultInstance.id,
});
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.get_zones(available_disk_category="cloud_efficiency",
available_resource_creation="VSwitch")
default_get_images = alicloud.ecs.get_images(most_recent=True,
owners="system")
default_get_instance_types = alicloud.ecs.get_instance_types(availability_zone=default.zones[0].id,
image_id=default_get_images.images[0].id)
default_integer = random.index.Integer("default",
min=10000,
max=99999)
default_role = alicloud.ram.Role("default",
name=f"{name}-{default_integer['result']}",
document="""\x09\x09{
\x09\x09\x09"Statement": [
\x09\x09\x09\x09{
\x09\x09\x09\x09\x09"Action": "sts:AssumeRole",
\x09\x09\x09\x09\x09"Effect": "Allow",
\x09\x09\x09\x09\x09"Principal": {
\x09\x09\x09\x09\x09\x09"Service": [
\x09\x09\x09\x09\x09\x09\x09"ecs.aliyuncs.com"
\x09\x09\x09\x09\x09\x09]
\x09\x09\x09\x09\x09}
\x09\x09\x09\x09}
\x09\x09 \x09],
\x09\x09\x09"Version": "1"
\x09\x09}
""",
force=True)
default_network = alicloud.vpc.Network("default",
vpc_name=f"{name}-{default_integer['result']}",
cidr_block="192.168.0.0/16")
default_switch = alicloud.vpc.Switch("default",
vswitch_name=f"{name}-{default_integer['result']}",
vpc_id=default_network.id,
cidr_block="192.168.192.0/24",
zone_id=default.zones[0].id)
default_security_group = alicloud.ecs.SecurityGroup("default", vpc_id=default_network.id)
default_instance = alicloud.ecs.Instance("default",
image_id=default_get_images.images[0].id,
instance_type=default_get_instance_types.instance_types[0].id,
security_groups=[__item.id for __item in [default_security_group]],
internet_charge_type="PayByTraffic",
internet_max_bandwidth_out=10,
availability_zone=default_get_instance_types.instance_types[0].availability_zones[0],
instance_charge_type="PostPaid",
system_disk_category="cloud_efficiency",
vswitch_id=default_switch.id,
instance_name=f"{name}-{default_integer['result']}")
default_ram_role_attachment = alicloud.ecs.RamRoleAttachment("default",
ram_role_name=default_role.id,
instance_id=default_instance.id)
package main
import (
"fmt"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ram"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi-random/sdk/v4/go/random"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example";
if param := cfg.Get("name"); param != ""{
name = param
}
_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
AvailableDiskCategory: pulumi.StringRef("cloud_efficiency"),
AvailableResourceCreation: pulumi.StringRef("VSwitch"),
}, nil);
if err != nil {
return err
}
defaultGetImages, err := ecs.GetImages(ctx, &ecs.GetImagesArgs{
MostRecent: pulumi.BoolRef(true),
Owners: pulumi.StringRef("system"),
}, nil);
if err != nil {
return err
}
defaultGetInstanceTypes, err := ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
AvailabilityZone: pulumi.StringRef(_default.Zones[0].Id),
ImageId: pulumi.StringRef(defaultGetImages.Images[0].Id),
}, nil);
if err != nil {
return err
}
defaultInteger, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
Min: 10000,
Max: 99999,
})
if err != nil {
return err
}
defaultRole, err := ram.NewRole(ctx, "default", &ram.RoleArgs{
Name: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
Document: pulumi.String(` {
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": [
"ecs.aliyuncs.com"
]
}
}
],
"Version": "1"
}
`),
Force: pulumi.Bool(true),
})
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
CidrBlock: pulumi.String("192.168.0.0/16"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VswitchName: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
VpcId: defaultNetwork.ID(),
CidrBlock: pulumi.String("192.168.192.0/24"),
ZoneId: pulumi.String(_default.Zones[0].Id),
})
if err != nil {
return err
}
defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
var splat0 pulumi.StringArray
for _, val0 := range %!v(PANIC=Format method: fatal: An assertion has failed: tok: ) {
splat0 = append(splat0, val0.ID())
}
defaultInstance, err := ecs.NewInstance(ctx, "default", &ecs.InstanceArgs{
ImageId: pulumi.String(defaultGetImages.Images[0].Id),
InstanceType: pulumi.String(defaultGetInstanceTypes.InstanceTypes[0].Id),
SecurityGroups: splat0,
InternetChargeType: pulumi.String("PayByTraffic"),
InternetMaxBandwidthOut: pulumi.Int(10),
AvailabilityZone: pulumi.String(defaultGetInstanceTypes.InstanceTypes[0].AvailabilityZones[0]),
InstanceChargeType: pulumi.String("PostPaid"),
SystemDiskCategory: pulumi.String("cloud_efficiency"),
VswitchId: defaultSwitch.ID(),
InstanceName: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
})
if err != nil {
return err
}
_, err = ecs.NewRamRoleAttachment(ctx, "default", &ecs.RamRoleAttachmentArgs{
RamRoleName: defaultRole.ID(),
InstanceId: defaultInstance.ID(),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = AliCloud.GetZones.Invoke(new()
{
AvailableDiskCategory = "cloud_efficiency",
AvailableResourceCreation = "VSwitch",
});
var defaultGetImages = AliCloud.Ecs.GetImages.Invoke(new()
{
MostRecent = true,
Owners = "system",
});
var defaultGetInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
{
AvailabilityZone = @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
ImageId = defaultGetImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
});
var defaultInteger = new Random.Index.Integer("default", new()
{
Min = 10000,
Max = 99999,
});
var defaultRole = new AliCloud.Ram.Role("default", new()
{
Name = $"{name}-{defaultInteger.Result}",
Document = @" {
""Statement"": [
{
""Action"": ""sts:AssumeRole"",
""Effect"": ""Allow"",
""Principal"": {
""Service"": [
""ecs.aliyuncs.com""
]
}
}
],
""Version"": ""1""
}
",
Force = true,
});
var defaultNetwork = new AliCloud.Vpc.Network("default", new()
{
VpcName = $"{name}-{defaultInteger.Result}",
CidrBlock = "192.168.0.0/16",
});
var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
{
VswitchName = $"{name}-{defaultInteger.Result}",
VpcId = defaultNetwork.Id,
CidrBlock = "192.168.192.0/24",
ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
});
var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
{
VpcId = defaultNetwork.Id,
});
var defaultInstance = new AliCloud.Ecs.Instance("default", new()
{
ImageId = defaultGetImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
InstanceType = defaultGetInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.Id),
SecurityGroups = new[]
{
defaultSecurityGroup,
}.Select(__item => __item.Id).ToList(),
InternetChargeType = "PayByTraffic",
InternetMaxBandwidthOut = 10,
AvailabilityZone = defaultGetInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.AvailabilityZones[0]),
InstanceChargeType = "PostPaid",
SystemDiskCategory = "cloud_efficiency",
VswitchId = defaultSwitch.Id,
InstanceName = $"{name}-{defaultInteger.Result}",
});
var defaultRamRoleAttachment = new AliCloud.Ecs.RamRoleAttachment("default", new()
{
RamRoleName = defaultRole.Id,
InstanceId = defaultInstance.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.ecs.EcsFunctions;
import com.pulumi.alicloud.ecs.inputs.GetImagesArgs;
import com.pulumi.alicloud.ecs.inputs.GetInstanceTypesArgs;
import com.pulumi.random.integer;
import com.pulumi.random.integerArgs;
import com.pulumi.alicloud.ram.Role;
import com.pulumi.alicloud.ram.RoleArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.ecs.Instance;
import com.pulumi.alicloud.ecs.InstanceArgs;
import com.pulumi.alicloud.ecs.RamRoleAttachment;
import com.pulumi.alicloud.ecs.RamRoleAttachmentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
.availableDiskCategory("cloud_efficiency")
.availableResourceCreation("VSwitch")
.build());
final var defaultGetImages = EcsFunctions.getImages(GetImagesArgs.builder()
.mostRecent(true)
.owners("system")
.build());
final var defaultGetInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
.availabilityZone(default_.zones()[0].id())
.imageId(defaultGetImages.images()[0].id())
.build());
var defaultInteger = new Integer("defaultInteger", IntegerArgs.builder()
.min(10000)
.max(99999)
.build());
var defaultRole = new Role("defaultRole", RoleArgs.builder()
.name(String.format("%s-%s", name,defaultInteger.result()))
.document("""
{
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": [
"ecs.aliyuncs.com"
]
}
}
],
"Version": "1"
}
""")
.force(true)
.build());
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName(String.format("%s-%s", name,defaultInteger.result()))
.cidrBlock("192.168.0.0/16")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vswitchName(String.format("%s-%s", name,defaultInteger.result()))
.vpcId(defaultNetwork.id())
.cidrBlock("192.168.192.0/24")
.zoneId(default_.zones()[0].id())
.build());
var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
.vpcId(defaultNetwork.id())
.build());
var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
.imageId(defaultGetImages.images()[0].id())
.instanceType(defaultGetInstanceTypes.instanceTypes()[0].id())
.securityGroups(defaultSecurityGroup.stream().map(element -> element.id()).collect(toList()))
.internetChargeType("PayByTraffic")
.internetMaxBandwidthOut(10)
.availabilityZone(defaultGetInstanceTypes.instanceTypes()[0].availabilityZones()[0])
.instanceChargeType("PostPaid")
.systemDiskCategory("cloud_efficiency")
.vswitchId(defaultSwitch.id())
.instanceName(String.format("%s-%s", name,defaultInteger.result()))
.build());
var defaultRamRoleAttachment = new RamRoleAttachment("defaultRamRoleAttachment", RamRoleAttachmentArgs.builder()
.ramRoleName(defaultRole.id())
.instanceId(defaultInstance.id())
.build());
}
}
Coming soon!
Create RamRoleAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RamRoleAttachment(name: string, args: RamRoleAttachmentArgs, opts?: CustomResourceOptions);
@overload
def RamRoleAttachment(resource_name: str,
args: RamRoleAttachmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RamRoleAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
ram_role_name: Optional[str] = None,
policy: Optional[str] = None)
func NewRamRoleAttachment(ctx *Context, name string, args RamRoleAttachmentArgs, opts ...ResourceOption) (*RamRoleAttachment, error)
public RamRoleAttachment(string name, RamRoleAttachmentArgs args, CustomResourceOptions? opts = null)
public RamRoleAttachment(String name, RamRoleAttachmentArgs args)
public RamRoleAttachment(String name, RamRoleAttachmentArgs args, CustomResourceOptions options)
type: alicloud:ecs:RamRoleAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RamRoleAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RamRoleAttachmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RamRoleAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RamRoleAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RamRoleAttachmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ramRoleAttachmentResource = new AliCloud.Ecs.RamRoleAttachment("ramRoleAttachmentResource", new()
{
InstanceId = "string",
RamRoleName = "string",
Policy = "string",
});
example, err := ecs.NewRamRoleAttachment(ctx, "ramRoleAttachmentResource", &ecs.RamRoleAttachmentArgs{
InstanceId: pulumi.String("string"),
RamRoleName: pulumi.String("string"),
Policy: pulumi.String("string"),
})
var ramRoleAttachmentResource = new RamRoleAttachment("ramRoleAttachmentResource", RamRoleAttachmentArgs.builder()
.instanceId("string")
.ramRoleName("string")
.policy("string")
.build());
ram_role_attachment_resource = alicloud.ecs.RamRoleAttachment("ramRoleAttachmentResource",
instance_id="string",
ram_role_name="string",
policy="string")
const ramRoleAttachmentResource = new alicloud.ecs.RamRoleAttachment("ramRoleAttachmentResource", {
instanceId: "string",
ramRoleName: "string",
policy: "string",
});
type: alicloud:ecs:RamRoleAttachment
properties:
instanceId: string
policy: string
ramRoleName: string
RamRoleAttachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RamRoleAttachment resource accepts the following input properties:
- Instance
Id string - The ID of the instance.
- Ram
Role stringName - The name of the instance RAM role.
- Policy string
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- Instance
Id string - The ID of the instance.
- Ram
Role stringName - The name of the instance RAM role.
- Policy string
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- instance
Id String - The ID of the instance.
- ram
Role StringName - The name of the instance RAM role.
- policy String
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- instance
Id string - The ID of the instance.
- ram
Role stringName - The name of the instance RAM role.
- policy string
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- instance_
id str - The ID of the instance.
- ram_
role_ strname - The name of the instance RAM role.
- policy str
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- instance
Id String - The ID of the instance.
- ram
Role StringName - The name of the instance RAM role.
- policy String
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
Outputs
All input properties are implicitly available as output properties. Additionally, the RamRoleAttachment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing RamRoleAttachment Resource
Get an existing RamRoleAttachment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RamRoleAttachmentState, opts?: CustomResourceOptions): RamRoleAttachment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
policy: Optional[str] = None,
ram_role_name: Optional[str] = None) -> RamRoleAttachment
func GetRamRoleAttachment(ctx *Context, name string, id IDInput, state *RamRoleAttachmentState, opts ...ResourceOption) (*RamRoleAttachment, error)
public static RamRoleAttachment Get(string name, Input<string> id, RamRoleAttachmentState? state, CustomResourceOptions? opts = null)
public static RamRoleAttachment get(String name, Output<String> id, RamRoleAttachmentState state, CustomResourceOptions options)
resources: _: type: alicloud:ecs:RamRoleAttachment get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Instance
Id string - The ID of the instance.
- Policy string
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- Ram
Role stringName - The name of the instance RAM role.
- Instance
Id string - The ID of the instance.
- Policy string
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- Ram
Role stringName - The name of the instance RAM role.
- instance
Id String - The ID of the instance.
- policy String
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- ram
Role StringName - The name of the instance RAM role.
- instance
Id string - The ID of the instance.
- policy string
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- ram
Role stringName - The name of the instance RAM role.
- instance_
id str - The ID of the instance.
- policy str
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- ram_
role_ strname - The name of the instance RAM role.
- instance
Id String - The ID of the instance.
- policy String
- The additional policy. When you attach an instance RAM role to instances, you can specify an additional policy to further limit the permissions of the role.
- ram
Role StringName - The name of the instance RAM role.
Import
ECS Ram Role Attachment can be imported using the id, e.g.
$ pulumi import alicloud:ecs/ramRoleAttachment:RamRoleAttachment example <instance_id>:<ram_role_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.