1. Packages
  2. AWS Classic
  3. API Docs
  4. vpclattice
  5. AuthPolicy

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.vpclattice.AuthPolicy

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Resource for managing an AWS VPC Lattice Auth Policy.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.vpclattice.Service("example", {
        name: "example-vpclattice-service",
        authType: "AWS_IAM",
        customDomainName: "example.com",
    });
    const exampleAuthPolicy = new aws.vpclattice.AuthPolicy("example", {
        resourceIdentifier: example.arn,
        policy: JSON.stringify({
            version: "2012-10-17",
            statement: [{
                action: "*",
                effect: "Allow",
                principal: "*",
                resource: "*",
                condition: {
                    stringNotEqualsIgnoreCase: {
                        "aws:PrincipalType": "anonymous",
                    },
                },
            }],
        }),
    });
    
    import pulumi
    import json
    import pulumi_aws as aws
    
    example = aws.vpclattice.Service("example",
        name="example-vpclattice-service",
        auth_type="AWS_IAM",
        custom_domain_name="example.com")
    example_auth_policy = aws.vpclattice.AuthPolicy("example",
        resource_identifier=example.arn,
        policy=json.dumps({
            "version": "2012-10-17",
            "statement": [{
                "action": "*",
                "effect": "Allow",
                "principal": "*",
                "resource": "*",
                "condition": {
                    "stringNotEqualsIgnoreCase": {
                        "aws:PrincipalType": "anonymous",
                    },
                },
            }],
        }))
    
    package main
    
    import (
    	"encoding/json"
    
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/vpclattice"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := vpclattice.NewService(ctx, "example", &vpclattice.ServiceArgs{
    			Name:             pulumi.String("example-vpclattice-service"),
    			AuthType:         pulumi.String("AWS_IAM"),
    			CustomDomainName: pulumi.String("example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		tmpJSON0, err := json.Marshal(map[string]interface{}{
    			"version": "2012-10-17",
    			"statement": []map[string]interface{}{
    				map[string]interface{}{
    					"action":    "*",
    					"effect":    "Allow",
    					"principal": "*",
    					"resource":  "*",
    					"condition": map[string]interface{}{
    						"stringNotEqualsIgnoreCase": map[string]interface{}{
    							"aws:PrincipalType": "anonymous",
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		json0 := string(tmpJSON0)
    		_, err = vpclattice.NewAuthPolicy(ctx, "example", &vpclattice.AuthPolicyArgs{
    			ResourceIdentifier: example.Arn,
    			Policy:             pulumi.String(json0),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.VpcLattice.Service("example", new()
        {
            Name = "example-vpclattice-service",
            AuthType = "AWS_IAM",
            CustomDomainName = "example.com",
        });
    
        var exampleAuthPolicy = new Aws.VpcLattice.AuthPolicy("example", new()
        {
            ResourceIdentifier = example.Arn,
            Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
            {
                ["version"] = "2012-10-17",
                ["statement"] = new[]
                {
                    new Dictionary<string, object?>
                    {
                        ["action"] = "*",
                        ["effect"] = "Allow",
                        ["principal"] = "*",
                        ["resource"] = "*",
                        ["condition"] = new Dictionary<string, object?>
                        {
                            ["stringNotEqualsIgnoreCase"] = new Dictionary<string, object?>
                            {
                                ["aws:PrincipalType"] = "anonymous",
                            },
                        },
                    },
                },
            }),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.vpclattice.Service;
    import com.pulumi.aws.vpclattice.ServiceArgs;
    import com.pulumi.aws.vpclattice.AuthPolicy;
    import com.pulumi.aws.vpclattice.AuthPolicyArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    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 example = new Service("example", ServiceArgs.builder()        
                .name("example-vpclattice-service")
                .authType("AWS_IAM")
                .customDomainName("example.com")
                .build());
    
            var exampleAuthPolicy = new AuthPolicy("exampleAuthPolicy", AuthPolicyArgs.builder()        
                .resourceIdentifier(example.arn())
                .policy(serializeJson(
                    jsonObject(
                        jsonProperty("version", "2012-10-17"),
                        jsonProperty("statement", jsonArray(jsonObject(
                            jsonProperty("action", "*"),
                            jsonProperty("effect", "Allow"),
                            jsonProperty("principal", "*"),
                            jsonProperty("resource", "*"),
                            jsonProperty("condition", jsonObject(
                                jsonProperty("stringNotEqualsIgnoreCase", jsonObject(
                                    jsonProperty("aws:PrincipalType", "anonymous")
                                ))
                            ))
                        )))
                    )))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:vpclattice:Service
        properties:
          name: example-vpclattice-service
          authType: AWS_IAM
          customDomainName: example.com
      exampleAuthPolicy:
        type: aws:vpclattice:AuthPolicy
        name: example
        properties:
          resourceIdentifier: ${example.arn}
          policy:
            fn::toJSON:
              version: 2012-10-17
              statement:
                - action: '*'
                  effect: Allow
                  principal: '*'
                  resource: '*'
                  condition:
                    stringNotEqualsIgnoreCase:
                      aws:PrincipalType: anonymous
    

    Create AuthPolicy Resource

    new AuthPolicy(name: string, args: AuthPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def AuthPolicy(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   policy: Optional[str] = None,
                   resource_identifier: Optional[str] = None,
                   state: Optional[str] = None)
    @overload
    def AuthPolicy(resource_name: str,
                   args: AuthPolicyArgs,
                   opts: Optional[ResourceOptions] = None)
    func NewAuthPolicy(ctx *Context, name string, args AuthPolicyArgs, opts ...ResourceOption) (*AuthPolicy, error)
    public AuthPolicy(string name, AuthPolicyArgs args, CustomResourceOptions? opts = null)
    public AuthPolicy(String name, AuthPolicyArgs args)
    public AuthPolicy(String name, AuthPolicyArgs args, CustomResourceOptions options)
    
    type: aws:vpclattice:AuthPolicy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AuthPolicyArgs
    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 AuthPolicyArgs
    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 AuthPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Policy string
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    ResourceIdentifier string
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    State string
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    Policy string
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    ResourceIdentifier string
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    State string
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy String
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resourceIdentifier String
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state String
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy string
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resourceIdentifier string
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state string
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy str
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resource_identifier str
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state str
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy String
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resourceIdentifier String
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state String
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.

    Outputs

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

    Get an existing AuthPolicy 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?: AuthPolicyState, opts?: CustomResourceOptions): AuthPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            policy: Optional[str] = None,
            resource_identifier: Optional[str] = None,
            state: Optional[str] = None) -> AuthPolicy
    func GetAuthPolicy(ctx *Context, name string, id IDInput, state *AuthPolicyState, opts ...ResourceOption) (*AuthPolicy, error)
    public static AuthPolicy Get(string name, Input<string> id, AuthPolicyState? state, CustomResourceOptions? opts = null)
    public static AuthPolicy get(String name, Output<String> id, AuthPolicyState 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.
    The following state arguments are supported:
    Policy string
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    ResourceIdentifier string
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    State string
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    Policy string
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    ResourceIdentifier string
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    State string
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy String
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resourceIdentifier String
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state String
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy string
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resourceIdentifier string
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state string
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy str
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resource_identifier str
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state str
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.
    policy String
    The auth policy. The policy string in JSON must not contain newlines or blank lines.
    resourceIdentifier String
    The ID or Amazon Resource Name (ARN) of the service network or service for which the policy is created.
    state String
    The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive.

    Import

    Using pulumi import, import VPC Lattice Auth Policy using the id. For example:

    $ pulumi import aws:vpclattice/authPolicy:AuthPolicy example abcd-12345678
    

    Package Details

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

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi