GroupPolicyAttachment
Attaches a Managed IAM Policy to an IAM group
NOTE: The usage of this resource conflicts with the
aws.iam.PolicyAttachment
resource and will permanently show a difference if both are defined.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var @group = new Aws.Iam.Group("group", new Aws.Iam.GroupArgs
{
});
var policy = new Aws.Iam.Policy("policy", new Aws.Iam.PolicyArgs
{
Description = "A test policy",
Policy = "{ ... policy JSON ... }",
});
var test_attach = new Aws.Iam.GroupPolicyAttachment("test-attach", new Aws.Iam.GroupPolicyAttachmentArgs
{
Group = @group.Name,
PolicyArn = policy.Arn,
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v3/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
group, err := iam.NewGroup(ctx, "group", nil)
if err != nil {
return err
}
policy, err := iam.NewPolicy(ctx, "policy", &iam.PolicyArgs{
Description: pulumi.String("A test policy"),
Policy: pulumi.String("{ ... policy JSON ... }"),
})
if err != nil {
return err
}
_, err = iam.NewGroupPolicyAttachment(ctx, "test_attach", &iam.GroupPolicyAttachmentArgs{
Group: group.Name,
PolicyArn: policy.Arn,
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_aws as aws
group = aws.iam.Group("group")
policy = aws.iam.Policy("policy",
description="A test policy",
policy="{ ... policy JSON ... }")
test_attach = aws.iam.GroupPolicyAttachment("test-attach",
group=group.name,
policy_arn=policy.arn)
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const group = new aws.iam.Group("group", {});
const policy = new aws.iam.Policy("policy", {
description: "A test policy",
policy: "{ ... policy JSON ... }",
});
const test_attach = new aws.iam.GroupPolicyAttachment("test-attach", {
group: group.name,
policyArn: policy.arn,
});
Create a GroupPolicyAttachment Resource
new GroupPolicyAttachment(name: string, args: GroupPolicyAttachmentArgs, opts?: CustomResourceOptions);
def GroupPolicyAttachment(resource_name: str, opts: Optional[ResourceOptions] = None, group: Optional[str] = None, policy_arn: Optional[str] = None)
func NewGroupPolicyAttachment(ctx *Context, name string, args GroupPolicyAttachmentArgs, opts ...ResourceOption) (*GroupPolicyAttachment, error)
public GroupPolicyAttachment(string name, GroupPolicyAttachmentArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args GroupPolicyAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GroupPolicyAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupPolicyAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
GroupPolicyAttachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The GroupPolicyAttachment resource accepts the following input properties:
- group str | str
The group the policy should be applied to
- policy_
arn str The ARN of the policy you want to apply
Outputs
All input properties are implicitly available as output properties. Additionally, the GroupPolicyAttachment 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 str
- The provider-assigned unique ID for this managed resource.
Look up an Existing GroupPolicyAttachment Resource
Get an existing GroupPolicyAttachment 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?: GroupPolicyAttachmentState, opts?: CustomResourceOptions): GroupPolicyAttachment
@staticmethod
def get(resource_name: str, id: str, opts: Optional[ResourceOptions] = None, group: Optional[str] = None, policy_arn: Optional[str] = None) -> GroupPolicyAttachment
func GetGroupPolicyAttachment(ctx *Context, name string, id IDInput, state *GroupPolicyAttachmentState, opts ...ResourceOption) (*GroupPolicyAttachment, error)
public static GroupPolicyAttachment Get(string name, Input<string> id, GroupPolicyAttachmentState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- group str | str
The group the policy should be applied to
- policy_
arn str The ARN of the policy you want to apply
Import
IAM group policy attachments can be imported using the group name and policy arn separated by /
.
$ pulumi import aws:iam/groupPolicyAttachment:GroupPolicyAttachment test-attach test-group/arn:aws:iam::xxxxxxxxxxxx:policy/test-policy
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.