AWS Classic
Policy
Provides an IoT policy.
Example Usage
using System.Collections.Generic;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var pubsub = new Aws.Iot.Policy("pubsub", new Aws.Iot.PolicyArgs
{
Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
{
{ "Version", "2012-10-17" },
{ "Statement", new[]
{
new Dictionary<string, object?>
{
{ "Action", new[]
{
"iot:*",
}
},
{ "Effect", "Allow" },
{ "Resource", "*" },
},
}
},
}),
});
}
}
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/iot"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
tmpJSON0, err := json.Marshal(map[string]interface{}{
"Version": "2012-10-17",
"Statement": []map[string]interface{}{
map[string]interface{}{
"Action": []string{
"iot:*",
},
"Effect": "Allow",
"Resource": "*",
},
},
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err := iot.NewPolicy(ctx, "pubsub", &iot.PolicyArgs{
Policy: pulumi.String(json0),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
import static com.pulumi.codegen.internal.Serialization.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var pubsub = new Policy("pubsub", PolicyArgs.builder()
.policy(serializeJson(
jsonObject(
jsonProperty("Version", "2012-10-17"),
jsonProperty("Statement", jsonArray(jsonObject(
jsonProperty("Action", jsonArray("iot:*")),
jsonProperty("Effect", "Allow"),
jsonProperty("Resource", "*")
)))
)))
.build());
}
}
import pulumi
import json
import pulumi_aws as aws
pubsub = aws.iot.Policy("pubsub", policy=json.dumps({
"Version": "2012-10-17",
"Statement": [{
"Action": ["iot:*"],
"Effect": "Allow",
"Resource": "*",
}],
}))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const pubsub = new aws.iot.Policy("pubsub", {policy: JSON.stringify({
Version: "2012-10-17",
Statement: [{
Action: ["iot:*"],
Effect: "Allow",
Resource: "*",
}],
})});
resources:
pubsub:
type: aws:iot:Policy
properties:
policy:
Fn::ToJSON:
Version: 2012-10-17
Statement:
- Action:
- iot:*
Effect: Allow
Resource: '*'
Create a Policy Resource
new Policy(name: string, args: PolicyArgs, opts?: CustomResourceOptions);
@overload
def Policy(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
policy: Optional[str] = None)
@overload
def Policy(resource_name: str,
args: PolicyArgs,
opts: Optional[ResourceOptions] = None)
func NewPolicy(ctx *Context, name string, args PolicyArgs, opts ...ResourceOption) (*Policy, error)
public Policy(string name, PolicyArgs args, CustomResourceOptions? opts = null)
public Policy(String name, PolicyArgs args)
public Policy(String name, PolicyArgs args, CustomResourceOptions options)
type: aws:iot:Policy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyArgs
- 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 PolicyArgs
- 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 PolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Policy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Policy resource accepts the following input properties:
- Policy
Document string The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- Name string
The name of the policy.
- Policy string
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- Name string
The name of the policy.
- policy String
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- name String
The name of the policy.
- policy string
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- name string
The name of the policy.
- policy str
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- name str
The name of the policy.
- policy String
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- name String
The name of the policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the Policy resource produces the following output properties:
- Arn string
The ARN assigned by AWS to this policy.
- Default
Version stringId The default version of this policy.
- Id string
The provider-assigned unique ID for this managed resource.
- Arn string
The ARN assigned by AWS to this policy.
- Default
Version stringId The default version of this policy.
- Id string
The provider-assigned unique ID for this managed resource.
- arn String
The ARN assigned by AWS to this policy.
- default
Version StringId The default version of this policy.
- id String
The provider-assigned unique ID for this managed resource.
- arn string
The ARN assigned by AWS to this policy.
- default
Version stringId The default version of this policy.
- id string
The provider-assigned unique ID for this managed resource.
- arn str
The ARN assigned by AWS to this policy.
- default_
version_ strid The default version of this policy.
- id str
The provider-assigned unique ID for this managed resource.
- arn String
The ARN assigned by AWS to this policy.
- default
Version StringId The default version of this policy.
- id String
The provider-assigned unique ID for this managed resource.
Look up an Existing Policy Resource
Get an existing Policy 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?: PolicyState, opts?: CustomResourceOptions): Policy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
default_version_id: Optional[str] = None,
name: Optional[str] = None,
policy: Optional[str] = None) -> Policy
func GetPolicy(ctx *Context, name string, id IDInput, state *PolicyState, opts ...ResourceOption) (*Policy, error)
public static Policy Get(string name, Input<string> id, PolicyState? state, CustomResourceOptions? opts = null)
public static Policy get(String name, Output<String> id, PolicyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Arn string
The ARN assigned by AWS to this policy.
- Default
Version stringId The default version of this policy.
- Name string
The name of the policy.
- Policy
Document string The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- Arn string
The ARN assigned by AWS to this policy.
- Default
Version stringId The default version of this policy.
- Name string
The name of the policy.
- Policy string
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- arn String
The ARN assigned by AWS to this policy.
- default
Version StringId The default version of this policy.
- name String
The name of the policy.
- policy String
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- arn string
The ARN assigned by AWS to this policy.
- default
Version stringId The default version of this policy.
- name string
The name of the policy.
- policy string
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- arn str
The ARN assigned by AWS to this policy.
- default_
version_ strid The default version of this policy.
- name str
The name of the policy.
- policy str
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
- arn String
The ARN assigned by AWS to this policy.
- default
Version StringId The default version of this policy.
- name String
The name of the policy.
- policy String
The policy document. This is a JSON formatted string. Use the IoT Developer Guide for more information on IoT Policies.
Import
IoT policies can be imported using the name
, e.g.,
$ pulumi import aws:iot/policy:Policy pubsub PubSubToAnyTopic
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.