aws.iam.RolePolicyAttachmentsExclusive
Explore with Pulumi AI
NOTE:: To reliably detect drift between customer managed policies listed in this resource and actual policies attached to the role in the cloud, you currently need to run Pulumi with
pulumi up --refresh
. See #4766 for tracking making this work with regularpulumi up
Resource for maintaining exclusive management of managed IAM policies assigned to an AWS IAM (Identity & Access Management) role.
!> This resource takes exclusive ownership over managed IAM policies attached to a role. This includes removal of managed IAM policies which are not explicitly configured. To prevent persistent drift, ensure any aws.iam.RolePolicyAttachment
resources managed alongside this resource are included in the policy_arns
argument.
Destruction of this resource means Pulumi will no longer manage reconciliation of the configured policy attachments. It will not detach the configured policies from the role.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.iam.RolePolicyAttachmentsExclusive("example", {
roleName: exampleAwsIamRole.name,
policyArns: [exampleAwsIamPolicy.arn],
});
import pulumi
import pulumi_aws as aws
example = aws.iam.RolePolicyAttachmentsExclusive("example",
role_name=example_aws_iam_role["name"],
policy_arns=[example_aws_iam_policy["arn"]])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iam.NewRolePolicyAttachmentsExclusive(ctx, "example", &iam.RolePolicyAttachmentsExclusiveArgs{
RoleName: pulumi.Any(exampleAwsIamRole.Name),
PolicyArns: pulumi.StringArray{
exampleAwsIamPolicy.Arn,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Iam.RolePolicyAttachmentsExclusive("example", new()
{
RoleName = exampleAwsIamRole.Name,
PolicyArns = new[]
{
exampleAwsIamPolicy.Arn,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iam.RolePolicyAttachmentsExclusive;
import com.pulumi.aws.iam.RolePolicyAttachmentsExclusiveArgs;
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) {
var example = new RolePolicyAttachmentsExclusive("example", RolePolicyAttachmentsExclusiveArgs.builder()
.roleName(exampleAwsIamRole.name())
.policyArns(exampleAwsIamPolicy.arn())
.build());
}
}
resources:
example:
type: aws:iam:RolePolicyAttachmentsExclusive
properties:
roleName: ${exampleAwsIamRole.name}
policyArns:
- ${exampleAwsIamPolicy.arn}
Disallow Managed IAM Policies
To automatically remove any configured managed IAM policies, set the policy_arns
argument to an empty list.
This will not prevent managed IAM policies from being assigned to a role via Pulumi (or any other interface). This resource enables bringing managed IAM policy assignments into a configured state, however, this reconciliation happens only when
apply
is proactively run.
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.iam.RolePolicyAttachmentsExclusive("example", {
roleName: exampleAwsIamRole.name,
policyArns: [],
});
import pulumi
import pulumi_aws as aws
example = aws.iam.RolePolicyAttachmentsExclusive("example",
role_name=example_aws_iam_role["name"],
policy_arns=[])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iam.NewRolePolicyAttachmentsExclusive(ctx, "example", &iam.RolePolicyAttachmentsExclusiveArgs{
RoleName: pulumi.Any(exampleAwsIamRole.Name),
PolicyArns: pulumi.StringArray{},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Iam.RolePolicyAttachmentsExclusive("example", new()
{
RoleName = exampleAwsIamRole.Name,
PolicyArns = new[] {},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iam.RolePolicyAttachmentsExclusive;
import com.pulumi.aws.iam.RolePolicyAttachmentsExclusiveArgs;
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) {
var example = new RolePolicyAttachmentsExclusive("example", RolePolicyAttachmentsExclusiveArgs.builder()
.roleName(exampleAwsIamRole.name())
.policyArns()
.build());
}
}
resources:
example:
type: aws:iam:RolePolicyAttachmentsExclusive
properties:
roleName: ${exampleAwsIamRole.name}
policyArns: []
Create RolePolicyAttachmentsExclusive Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RolePolicyAttachmentsExclusive(name: string, args: RolePolicyAttachmentsExclusiveArgs, opts?: CustomResourceOptions);
@overload
def RolePolicyAttachmentsExclusive(resource_name: str,
args: RolePolicyAttachmentsExclusiveArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RolePolicyAttachmentsExclusive(resource_name: str,
opts: Optional[ResourceOptions] = None,
policy_arns: Optional[Sequence[str]] = None,
role_name: Optional[str] = None)
func NewRolePolicyAttachmentsExclusive(ctx *Context, name string, args RolePolicyAttachmentsExclusiveArgs, opts ...ResourceOption) (*RolePolicyAttachmentsExclusive, error)
public RolePolicyAttachmentsExclusive(string name, RolePolicyAttachmentsExclusiveArgs args, CustomResourceOptions? opts = null)
public RolePolicyAttachmentsExclusive(String name, RolePolicyAttachmentsExclusiveArgs args)
public RolePolicyAttachmentsExclusive(String name, RolePolicyAttachmentsExclusiveArgs args, CustomResourceOptions options)
type: aws:iam:RolePolicyAttachmentsExclusive
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 RolePolicyAttachmentsExclusiveArgs
- 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 RolePolicyAttachmentsExclusiveArgs
- 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 RolePolicyAttachmentsExclusiveArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RolePolicyAttachmentsExclusiveArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RolePolicyAttachmentsExclusiveArgs
- 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 rolePolicyAttachmentsExclusiveResource = new Aws.Iam.RolePolicyAttachmentsExclusive("rolePolicyAttachmentsExclusiveResource", new()
{
PolicyArns = new[]
{
"string",
},
RoleName = "string",
});
example, err := iam.NewRolePolicyAttachmentsExclusive(ctx, "rolePolicyAttachmentsExclusiveResource", &iam.RolePolicyAttachmentsExclusiveArgs{
PolicyArns: pulumi.StringArray{
pulumi.String("string"),
},
RoleName: pulumi.String("string"),
})
var rolePolicyAttachmentsExclusiveResource = new RolePolicyAttachmentsExclusive("rolePolicyAttachmentsExclusiveResource", RolePolicyAttachmentsExclusiveArgs.builder()
.policyArns("string")
.roleName("string")
.build());
role_policy_attachments_exclusive_resource = aws.iam.RolePolicyAttachmentsExclusive("rolePolicyAttachmentsExclusiveResource",
policy_arns=["string"],
role_name="string")
const rolePolicyAttachmentsExclusiveResource = new aws.iam.RolePolicyAttachmentsExclusive("rolePolicyAttachmentsExclusiveResource", {
policyArns: ["string"],
roleName: "string",
});
type: aws:iam:RolePolicyAttachmentsExclusive
properties:
policyArns:
- string
roleName: string
RolePolicyAttachmentsExclusive 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 RolePolicyAttachmentsExclusive resource accepts the following input properties:
- Policy
Arns List<string> - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- Role
Name string - IAM role name.
- Policy
Arns []string - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- Role
Name string - IAM role name.
- policy
Arns List<String> - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role
Name String - IAM role name.
- policy
Arns string[] - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role
Name string - IAM role name.
- policy_
arns Sequence[str] - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role_
name str - IAM role name.
- policy
Arns List<String> - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role
Name String - IAM role name.
Outputs
All input properties are implicitly available as output properties. Additionally, the RolePolicyAttachmentsExclusive 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 RolePolicyAttachmentsExclusive Resource
Get an existing RolePolicyAttachmentsExclusive 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?: RolePolicyAttachmentsExclusiveState, opts?: CustomResourceOptions): RolePolicyAttachmentsExclusive
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
policy_arns: Optional[Sequence[str]] = None,
role_name: Optional[str] = None) -> RolePolicyAttachmentsExclusive
func GetRolePolicyAttachmentsExclusive(ctx *Context, name string, id IDInput, state *RolePolicyAttachmentsExclusiveState, opts ...ResourceOption) (*RolePolicyAttachmentsExclusive, error)
public static RolePolicyAttachmentsExclusive Get(string name, Input<string> id, RolePolicyAttachmentsExclusiveState? state, CustomResourceOptions? opts = null)
public static RolePolicyAttachmentsExclusive get(String name, Output<String> id, RolePolicyAttachmentsExclusiveState state, CustomResourceOptions options)
resources: _: type: aws:iam:RolePolicyAttachmentsExclusive 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.
- Policy
Arns List<string> - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- Role
Name string - IAM role name.
- Policy
Arns []string - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- Role
Name string - IAM role name.
- policy
Arns List<String> - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role
Name String - IAM role name.
- policy
Arns string[] - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role
Name string - IAM role name.
- policy_
arns Sequence[str] - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role_
name str - IAM role name.
- policy
Arns List<String> - A list of managed IAM policy ARNs to be attached to the role. Policies attached to this role but not configured in this argument will be removed.
- role
Name String - IAM role name.
Import
Using pulumi import
, import exclusive management of managed IAM policy assignments using the role_name
. For example:
$ pulumi import aws:iam/rolePolicyAttachmentsExclusive:RolePolicyAttachmentsExclusive example MyRole
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.