aws.xray.ResourcePolicy
Explore with Pulumi AI
Resource for managing an AWS X-Ray Resource Policy.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.xray.ResourcePolicy("test", {
policyName: "test",
policyDocument: "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"AllowXRayAccess\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"xray:*\",\"xray:PutResourcePolicy\"],\"Resource\":\"*\"}]}",
bypassPolicyLockoutCheck: true,
});
import pulumi
import pulumi_aws as aws
test = aws.xray.ResourcePolicy("test",
policy_name="test",
policy_document="{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"AllowXRayAccess\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"xray:*\",\"xray:PutResourcePolicy\"],\"Resource\":\"*\"}]}",
bypass_policy_lockout_check=True)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/xray"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := xray.NewResourcePolicy(ctx, "test", &xray.ResourcePolicyArgs{
PolicyName: pulumi.String("test"),
PolicyDocument: pulumi.String("{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"AllowXRayAccess\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"xray:*\",\"xray:PutResourcePolicy\"],\"Resource\":\"*\"}]}"),
BypassPolicyLockoutCheck: pulumi.Bool(true),
})
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 test = new Aws.Xray.ResourcePolicy("test", new()
{
PolicyName = "test",
PolicyDocument = "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"AllowXRayAccess\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"xray:*\",\"xray:PutResourcePolicy\"],\"Resource\":\"*\"}]}",
BypassPolicyLockoutCheck = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.xray.ResourcePolicy;
import com.pulumi.aws.xray.ResourcePolicyArgs;
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 test = new ResourcePolicy("test", ResourcePolicyArgs.builder()
.policyName("test")
.policyDocument("{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"AllowXRayAccess\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"*\"},\"Action\":[\"xray:*\",\"xray:PutResourcePolicy\"],\"Resource\":\"*\"}]}")
.bypassPolicyLockoutCheck(true)
.build());
}
}
resources:
test:
type: aws:xray:ResourcePolicy
properties:
policyName: test
policyDocument: '{"Version":"2012-10-17","Statement":[{"Sid":"AllowXRayAccess","Effect":"Allow","Principal":{"AWS":"*"},"Action":["xray:*","xray:PutResourcePolicy"],"Resource":"*"}]}'
bypassPolicyLockoutCheck: true
Create ResourcePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourcePolicy(name: string, args: ResourcePolicyArgs, opts?: CustomResourceOptions);
@overload
def ResourcePolicy(resource_name: str,
args: ResourcePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourcePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
policy_document: Optional[str] = None,
policy_name: Optional[str] = None,
bypass_policy_lockout_check: Optional[bool] = None,
policy_revision_id: Optional[str] = None)
func NewResourcePolicy(ctx *Context, name string, args ResourcePolicyArgs, opts ...ResourceOption) (*ResourcePolicy, error)
public ResourcePolicy(string name, ResourcePolicyArgs args, CustomResourceOptions? opts = null)
public ResourcePolicy(String name, ResourcePolicyArgs args)
public ResourcePolicy(String name, ResourcePolicyArgs args, CustomResourceOptions options)
type: aws:xray:ResourcePolicy
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 ResourcePolicyArgs
- 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 ResourcePolicyArgs
- 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 ResourcePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourcePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourcePolicyArgs
- 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 exampleresourcePolicyResourceResourceFromXrayresourcePolicy = new Aws.Xray.ResourcePolicy("exampleresourcePolicyResourceResourceFromXrayresourcePolicy", new()
{
PolicyDocument = "string",
PolicyName = "string",
BypassPolicyLockoutCheck = false,
PolicyRevisionId = "string",
});
example, err := xray.NewResourcePolicy(ctx, "exampleresourcePolicyResourceResourceFromXrayresourcePolicy", &xray.ResourcePolicyArgs{
PolicyDocument: pulumi.String("string"),
PolicyName: pulumi.String("string"),
BypassPolicyLockoutCheck: pulumi.Bool(false),
PolicyRevisionId: pulumi.String("string"),
})
var exampleresourcePolicyResourceResourceFromXrayresourcePolicy = new ResourcePolicy("exampleresourcePolicyResourceResourceFromXrayresourcePolicy", ResourcePolicyArgs.builder()
.policyDocument("string")
.policyName("string")
.bypassPolicyLockoutCheck(false)
.policyRevisionId("string")
.build());
exampleresource_policy_resource_resource_from_xrayresource_policy = aws.xray.ResourcePolicy("exampleresourcePolicyResourceResourceFromXrayresourcePolicy",
policy_document="string",
policy_name="string",
bypass_policy_lockout_check=False,
policy_revision_id="string")
const exampleresourcePolicyResourceResourceFromXrayresourcePolicy = new aws.xray.ResourcePolicy("exampleresourcePolicyResourceResourceFromXrayresourcePolicy", {
policyDocument: "string",
policyName: "string",
bypassPolicyLockoutCheck: false,
policyRevisionId: "string",
});
type: aws:xray:ResourcePolicy
properties:
bypassPolicyLockoutCheck: false
policyDocument: string
policyName: string
policyRevisionId: string
ResourcePolicy 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 ResourcePolicy resource accepts the following input properties:
- Policy
Document string JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- Policy
Name string - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- Bypass
Policy boolLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - Policy
Revision stringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- Policy
Document string JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- Policy
Name string - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- Bypass
Policy boolLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - Policy
Revision stringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- policy
Document String JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy
Name String - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- bypass
Policy BooleanLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - policy
Revision StringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- policy
Document string JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy
Name string - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- bypass
Policy booleanLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - policy
Revision stringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- policy_
document str JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy_
name str - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- bypass_
policy_ boollockout_ check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - policy_
revision_ strid - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- policy
Document String JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy
Name String - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- bypass
Policy BooleanLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - policy
Revision StringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourcePolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime - When the policy was last updated, in Unix time seconds.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated stringTime - When the policy was last updated, in Unix time seconds.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime - When the policy was last updated, in Unix time seconds.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Updated stringTime - When the policy was last updated, in Unix time seconds.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
updated_ strtime - When the policy was last updated, in Unix time seconds.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated StringTime - When the policy was last updated, in Unix time seconds.
Look up Existing ResourcePolicy Resource
Get an existing ResourcePolicy 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?: ResourcePolicyState, opts?: CustomResourceOptions): ResourcePolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bypass_policy_lockout_check: Optional[bool] = None,
last_updated_time: Optional[str] = None,
policy_document: Optional[str] = None,
policy_name: Optional[str] = None,
policy_revision_id: Optional[str] = None) -> ResourcePolicy
func GetResourcePolicy(ctx *Context, name string, id IDInput, state *ResourcePolicyState, opts ...ResourceOption) (*ResourcePolicy, error)
public static ResourcePolicy Get(string name, Input<string> id, ResourcePolicyState? state, CustomResourceOptions? opts = null)
public static ResourcePolicy get(String name, Output<String> id, ResourcePolicyState state, CustomResourceOptions options)
resources: _: type: aws:xray:ResourcePolicy 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.
- Bypass
Policy boolLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - Last
Updated stringTime - When the policy was last updated, in Unix time seconds.
- Policy
Document string JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- Policy
Name string - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- Policy
Revision stringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- Bypass
Policy boolLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - Last
Updated stringTime - When the policy was last updated, in Unix time seconds.
- Policy
Document string JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- Policy
Name string - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- Policy
Revision stringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- bypass
Policy BooleanLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - last
Updated StringTime - When the policy was last updated, in Unix time seconds.
- policy
Document String JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy
Name String - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- policy
Revision StringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- bypass
Policy booleanLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - last
Updated stringTime - When the policy was last updated, in Unix time seconds.
- policy
Document string JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy
Name string - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- policy
Revision stringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- bypass_
policy_ boollockout_ check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - last_
updated_ strtime - When the policy was last updated, in Unix time seconds.
- policy_
document str JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy_
name str - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- policy_
revision_ strid - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
- bypass
Policy BooleanLockout Check - Flag to indicate whether to bypass the resource policy lockout safety check. Setting this value to true increases the risk that the policy becomes unmanageable. Do not set this value to true indiscriminately. Use this parameter only when you include a policy in the request and you intend to prevent the principal that is making the request from making a subsequent PutResourcePolicy request. The default value is
false
. - last
Updated StringTime - When the policy was last updated, in Unix time seconds.
- policy
Document String JSON string of the resource policy or resource policy document, which can be up to 5kb in size.
The following arguments are optional:
- policy
Name String - name of the resource policy. Must be unique within a specific Amazon Web Services account.
- policy
Revision StringId - Specifies a specific policy revision, to ensure an atomic create operation. By default the resource policy is created if it does not exist, or updated with an incremented revision id. The revision id is unique to each policy in the account. If the policy revision id does not match the latest revision id, the operation will fail with an InvalidPolicyRevisionIdException exception. You can also provide a PolicyRevisionId of 0. In this case, the operation will fail with an InvalidPolicyRevisionIdException exception if a resource policy with the same name already exists.
Import
Using pulumi import
, import X-Ray Resource Policy using the policy_name
. For example:
$ pulumi import aws:xray/resourcePolicy:ResourcePolicy example resource_policy-name
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.