1. Packages
  2. AWS
  3. API Docs
  4. iot
  5. PolicyAttachment
AWS v6.75.0 published on Wednesday, Apr 2, 2025 by Pulumi

aws.iot.PolicyAttachment

Explore with Pulumi AI

Provides an IoT policy attachment.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as std from "@pulumi/std";

const pubsub = aws.iam.getPolicyDocument({
    statements: [{
        effect: "Allow",
        actions: ["iot:*"],
        resources: ["*"],
    }],
});
const pubsubPolicy = new aws.iot.Policy("pubsub", {
    name: "PubSubToAnyTopic",
    policy: pubsub.then(pubsub => pubsub.json),
});
const cert = new aws.iot.Certificate("cert", {
    csr: std.file({
        input: "csr.pem",
    }).then(invoke => invoke.result),
    active: true,
});
const att = new aws.iot.PolicyAttachment("att", {
    policy: pubsubPolicy.name,
    target: cert.arn,
});
Copy
import pulumi
import pulumi_aws as aws
import pulumi_std as std

pubsub = aws.iam.get_policy_document(statements=[{
    "effect": "Allow",
    "actions": ["iot:*"],
    "resources": ["*"],
}])
pubsub_policy = aws.iot.Policy("pubsub",
    name="PubSubToAnyTopic",
    policy=pubsub.json)
cert = aws.iot.Certificate("cert",
    csr=std.file(input="csr.pem").result,
    active=True)
att = aws.iot.PolicyAttachment("att",
    policy=pubsub_policy.name,
    target=cert.arn)
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iot"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		pubsub, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
			Statements: []iam.GetPolicyDocumentStatement{
				{
					Effect: pulumi.StringRef("Allow"),
					Actions: []string{
						"iot:*",
					},
					Resources: []string{
						"*",
					},
				},
			},
		}, nil)
		if err != nil {
			return err
		}
		pubsubPolicy, err := iot.NewPolicy(ctx, "pubsub", &iot.PolicyArgs{
			Name:   pulumi.String("PubSubToAnyTopic"),
			Policy: pulumi.String(pubsub.Json),
		})
		if err != nil {
			return err
		}
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "csr.pem",
		}, nil)
		if err != nil {
			return err
		}
		cert, err := iot.NewCertificate(ctx, "cert", &iot.CertificateArgs{
			Csr:    pulumi.String(invokeFile.Result),
			Active: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = iot.NewPolicyAttachment(ctx, "att", &iot.PolicyAttachmentArgs{
			Policy: pubsubPolicy.Name,
			Target: cert.Arn,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
using Std = Pulumi.Std;

return await Deployment.RunAsync(() => 
{
    var pubsub = Aws.Iam.GetPolicyDocument.Invoke(new()
    {
        Statements = new[]
        {
            new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
            {
                Effect = "Allow",
                Actions = new[]
                {
                    "iot:*",
                },
                Resources = new[]
                {
                    "*",
                },
            },
        },
    });

    var pubsubPolicy = new Aws.Iot.Policy("pubsub", new()
    {
        Name = "PubSubToAnyTopic",
        PolicyDocument = pubsub.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
    });

    var cert = new Aws.Iot.Certificate("cert", new()
    {
        Csr = Std.File.Invoke(new()
        {
            Input = "csr.pem",
        }).Apply(invoke => invoke.Result),
        Active = true,
    });

    var att = new Aws.Iot.PolicyAttachment("att", new()
    {
        Policy = pubsubPolicy.Name,
        Target = cert.Arn,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iam.IamFunctions;
import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
import com.pulumi.aws.iot.Policy;
import com.pulumi.aws.iot.PolicyArgs;
import com.pulumi.aws.iot.Certificate;
import com.pulumi.aws.iot.CertificateArgs;
import com.pulumi.aws.iot.PolicyAttachment;
import com.pulumi.aws.iot.PolicyAttachmentArgs;
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 pubsub = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
            .statements(GetPolicyDocumentStatementArgs.builder()
                .effect("Allow")
                .actions("iot:*")
                .resources("*")
                .build())
            .build());

        var pubsubPolicy = new Policy("pubsubPolicy", PolicyArgs.builder()
            .name("PubSubToAnyTopic")
            .policy(pubsub.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
            .build());

        var cert = new Certificate("cert", CertificateArgs.builder()
            .csr(StdFunctions.file(FileArgs.builder()
                .input("csr.pem")
                .build()).result())
            .active(true)
            .build());

        var att = new PolicyAttachment("att", PolicyAttachmentArgs.builder()
            .policy(pubsubPolicy.name())
            .target(cert.arn())
            .build());

    }
}
Copy
resources:
  pubsubPolicy:
    type: aws:iot:Policy
    name: pubsub
    properties:
      name: PubSubToAnyTopic
      policy: ${pubsub.json}
  cert:
    type: aws:iot:Certificate
    properties:
      csr:
        fn::invoke:
          function: std:file
          arguments:
            input: csr.pem
          return: result
      active: true
  att:
    type: aws:iot:PolicyAttachment
    properties:
      policy: ${pubsubPolicy.name}
      target: ${cert.arn}
variables:
  pubsub:
    fn::invoke:
      function: aws:iam:getPolicyDocument
      arguments:
        statements:
          - effect: Allow
            actions:
              - iot:*
            resources:
              - '*'
Copy

Create PolicyAttachment Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new PolicyAttachment(name: string, args: PolicyAttachmentArgs, opts?: CustomResourceOptions);
@overload
def PolicyAttachment(resource_name: str,
                     args: PolicyAttachmentArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def PolicyAttachment(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     policy: Optional[str] = None,
                     target: Optional[str] = None)
func NewPolicyAttachment(ctx *Context, name string, args PolicyAttachmentArgs, opts ...ResourceOption) (*PolicyAttachment, error)
public PolicyAttachment(string name, PolicyAttachmentArgs args, CustomResourceOptions? opts = null)
public PolicyAttachment(String name, PolicyAttachmentArgs args)
public PolicyAttachment(String name, PolicyAttachmentArgs args, CustomResourceOptions options)
type: aws:iot:PolicyAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PolicyAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PolicyAttachmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyAttachmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyAttachmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PolicyAttachmentArgs
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 awsPolicyAttachmentResource = new Aws.Iot.PolicyAttachment("awsPolicyAttachmentResource", new()
{
    Policy = "string",
    Target = "string",
});
Copy
example, err := iot.NewPolicyAttachment(ctx, "awsPolicyAttachmentResource", &iot.PolicyAttachmentArgs{
	Policy: pulumi.Any("string"),
	Target: pulumi.String("string"),
})
Copy
var awsPolicyAttachmentResource = new PolicyAttachment("awsPolicyAttachmentResource", PolicyAttachmentArgs.builder()
    .policy("string")
    .target("string")
    .build());
Copy
aws_policy_attachment_resource = aws.iot.PolicyAttachment("awsPolicyAttachmentResource",
    policy="string",
    target="string")
Copy
const awsPolicyAttachmentResource = new aws.iot.PolicyAttachment("awsPolicyAttachmentResource", {
    policy: "string",
    target: "string",
});
Copy
type: aws:iot:PolicyAttachment
properties:
    policy: string
    target: string
Copy

PolicyAttachment 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 PolicyAttachment resource accepts the following input properties:

Policy
This property is required.
Changes to this property will trigger replacement.
string | string
The name of the policy to attach.
Target
This property is required.
Changes to this property will trigger replacement.
string
The identity to which the policy is attached.
Policy
This property is required.
Changes to this property will trigger replacement.
string | string
The name of the policy to attach.
Target
This property is required.
Changes to this property will trigger replacement.
string
The identity to which the policy is attached.
policy
This property is required.
Changes to this property will trigger replacement.
String | String
The name of the policy to attach.
target
This property is required.
Changes to this property will trigger replacement.
String
The identity to which the policy is attached.
policy
This property is required.
Changes to this property will trigger replacement.
string | Policy
The name of the policy to attach.
target
This property is required.
Changes to this property will trigger replacement.
ARN
The identity to which the policy is attached.
policy
This property is required.
Changes to this property will trigger replacement.
str | str
The name of the policy to attach.
target
This property is required.
Changes to this property will trigger replacement.
str
The identity to which the policy is attached.
policy
This property is required.
Changes to this property will trigger replacement.
String |
The name of the policy to attach.
target
This property is required.
Changes to this property will trigger replacement.
The identity to which the policy is attached.

Outputs

All input properties are implicitly available as output properties. Additionally, the PolicyAttachment 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 PolicyAttachment Resource

Get an existing PolicyAttachment 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?: PolicyAttachmentState, opts?: CustomResourceOptions): PolicyAttachment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        policy: Optional[str] = None,
        target: Optional[str] = None) -> PolicyAttachment
func GetPolicyAttachment(ctx *Context, name string, id IDInput, state *PolicyAttachmentState, opts ...ResourceOption) (*PolicyAttachment, error)
public static PolicyAttachment Get(string name, Input<string> id, PolicyAttachmentState? state, CustomResourceOptions? opts = null)
public static PolicyAttachment get(String name, Output<String> id, PolicyAttachmentState state, CustomResourceOptions options)
resources:  _:    type: aws:iot:PolicyAttachment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Policy Changes to this property will trigger replacement. string | string
The name of the policy to attach.
Target Changes to this property will trigger replacement. string
The identity to which the policy is attached.
Policy Changes to this property will trigger replacement. string | string
The name of the policy to attach.
Target Changes to this property will trigger replacement. string
The identity to which the policy is attached.
policy Changes to this property will trigger replacement. String | String
The name of the policy to attach.
target Changes to this property will trigger replacement. String
The identity to which the policy is attached.
policy Changes to this property will trigger replacement. string | Policy
The name of the policy to attach.
target Changes to this property will trigger replacement. ARN
The identity to which the policy is attached.
policy Changes to this property will trigger replacement. str | str
The name of the policy to attach.
target Changes to this property will trigger replacement. str
The identity to which the policy is attached.
policy Changes to this property will trigger replacement. String |
The name of the policy to attach.
target Changes to this property will trigger replacement.
The identity to which the policy is attached.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.