@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
104 lines • 4.96 kB
JavaScript
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.RolePolicyAttachmentsExclusive = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* > **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](https://github.com/pulumi/pulumi-aws/issues/4766) for tracking making this work with regular `pulumi 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 `policyArns` 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
*
* ```typescript
* 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],
* });
* ```
*
* ### Disallow Managed IAM Policies
*
* To automatically remove any configured managed IAM policies, set the `policyArns` 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.
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = new aws.iam.RolePolicyAttachmentsExclusive("example", {
* roleName: exampleAwsIamRole.name,
* policyArns: [],
* });
* ```
*
* ## Import
*
* Using `pulumi import`, import exclusive management of managed IAM policy assignments using the `role_name`. For example:
*
* ```sh
* $ pulumi import aws:iam/rolePolicyAttachmentsExclusive:RolePolicyAttachmentsExclusive example MyRole
* ```
*/
class RolePolicyAttachmentsExclusive extends pulumi.CustomResource {
/**
* Get an existing RolePolicyAttachmentsExclusive resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new RolePolicyAttachmentsExclusive(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of RolePolicyAttachmentsExclusive. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === RolePolicyAttachmentsExclusive.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["policyArns"] = state?.policyArns;
resourceInputs["roleName"] = state?.roleName;
}
else {
const args = argsOrState;
if (args?.policyArns === undefined && !opts.urn) {
throw new Error("Missing required property 'policyArns'");
}
if (args?.roleName === undefined && !opts.urn) {
throw new Error("Missing required property 'roleName'");
}
resourceInputs["policyArns"] = args?.policyArns;
resourceInputs["roleName"] = args?.roleName;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(RolePolicyAttachmentsExclusive.__pulumiType, name, resourceInputs, opts);
}
}
exports.RolePolicyAttachmentsExclusive = RolePolicyAttachmentsExclusive;
/** @internal */
RolePolicyAttachmentsExclusive.__pulumiType = 'aws:iam/rolePolicyAttachmentsExclusive:RolePolicyAttachmentsExclusive';
//# sourceMappingURL=rolePolicyAttachmentsExclusive.js.map
;