1. Packages
  2. HashiCorp Consul
  3. API Docs
  4. Namespace
Consul v3.11.0 published on Monday, Nov 20, 2023 by Pulumi

consul.Namespace

Explore with Pulumi AI

consul logo
Consul v3.11.0 published on Monday, Nov 20, 2023 by Pulumi

    NOTE: This feature requires Consul Enterprise.

    The consul.Namespace resource provides isolated Consul Enterprise Namespaces.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Consul = Pulumi.Consul;
    
    return await Deployment.RunAsync(() => 
    {
        var production = new Consul.Namespace("production", new()
        {
            Description = "Production namespace",
            Meta = 
            {
                { "foo", "bar" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-consul/sdk/v3/go/consul"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := consul.NewNamespace(ctx, "production", &consul.NamespaceArgs{
    			Description: pulumi.String("Production namespace"),
    			Meta: pulumi.StringMap{
    				"foo": pulumi.String("bar"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.consul.Namespace;
    import com.pulumi.consul.NamespaceArgs;
    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 production = new Namespace("production", NamespaceArgs.builder()        
                .description("Production namespace")
                .meta(Map.of("foo", "bar"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_consul as consul
    
    production = consul.Namespace("production",
        description="Production namespace",
        meta={
            "foo": "bar",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as consul from "@pulumi/consul";
    
    const production = new consul.Namespace("production", {
        description: "Production namespace",
        meta: {
            foo: "bar",
        },
    });
    
    resources:
      production:
        type: consul:Namespace
        properties:
          description: Production namespace
          meta:
            foo: bar
    

    Create Namespace Resource

    new Namespace(name: string, args?: NamespaceArgs, opts?: CustomResourceOptions);
    @overload
    def Namespace(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  description: Optional[str] = None,
                  meta: Optional[Mapping[str, str]] = None,
                  name: Optional[str] = None,
                  partition: Optional[str] = None,
                  policy_defaults: Optional[Sequence[str]] = None,
                  role_defaults: Optional[Sequence[str]] = None)
    @overload
    def Namespace(resource_name: str,
                  args: Optional[NamespaceArgs] = None,
                  opts: Optional[ResourceOptions] = None)
    func NewNamespace(ctx *Context, name string, args *NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
    public Namespace(string name, NamespaceArgs? args = null, CustomResourceOptions? opts = null)
    public Namespace(String name, NamespaceArgs args)
    public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
    
    type: consul:Namespace
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args NamespaceArgs
    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 NamespaceArgs
    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 NamespaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NamespaceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Description string

    Free form namespace description.

    Meta Dictionary<string, string>

    Specifies arbitrary KV metadata to associate with the namespace.

    Name string

    The namespace name.

    Partition string

    The partition to create the namespace within.

    PolicyDefaults List<string>

    The list of default policies that should be applied to all tokens created in this namespace.

    RoleDefaults List<string>

    The list of default roles that should be applied to all tokens created in this namespace.

    Description string

    Free form namespace description.

    Meta map[string]string

    Specifies arbitrary KV metadata to associate with the namespace.

    Name string

    The namespace name.

    Partition string

    The partition to create the namespace within.

    PolicyDefaults []string

    The list of default policies that should be applied to all tokens created in this namespace.

    RoleDefaults []string

    The list of default roles that should be applied to all tokens created in this namespace.

    description String

    Free form namespace description.

    meta Map<String,String>

    Specifies arbitrary KV metadata to associate with the namespace.

    name String

    The namespace name.

    partition String

    The partition to create the namespace within.

    policyDefaults List<String>

    The list of default policies that should be applied to all tokens created in this namespace.

    roleDefaults List<String>

    The list of default roles that should be applied to all tokens created in this namespace.

    description string

    Free form namespace description.

    meta {[key: string]: string}

    Specifies arbitrary KV metadata to associate with the namespace.

    name string

    The namespace name.

    partition string

    The partition to create the namespace within.

    policyDefaults string[]

    The list of default policies that should be applied to all tokens created in this namespace.

    roleDefaults string[]

    The list of default roles that should be applied to all tokens created in this namespace.

    description str

    Free form namespace description.

    meta Mapping[str, str]

    Specifies arbitrary KV metadata to associate with the namespace.

    name str

    The namespace name.

    partition str

    The partition to create the namespace within.

    policy_defaults Sequence[str]

    The list of default policies that should be applied to all tokens created in this namespace.

    role_defaults Sequence[str]

    The list of default roles that should be applied to all tokens created in this namespace.

    description String

    Free form namespace description.

    meta Map<String>

    Specifies arbitrary KV metadata to associate with the namespace.

    name String

    The namespace name.

    partition String

    The partition to create the namespace within.

    policyDefaults List<String>

    The list of default policies that should be applied to all tokens created in this namespace.

    roleDefaults List<String>

    The list of default roles that should be applied to all tokens created in this namespace.

    Outputs

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

    Get an existing Namespace 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?: NamespaceState, opts?: CustomResourceOptions): Namespace
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            meta: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            partition: Optional[str] = None,
            policy_defaults: Optional[Sequence[str]] = None,
            role_defaults: Optional[Sequence[str]] = None) -> Namespace
    func GetNamespace(ctx *Context, name string, id IDInput, state *NamespaceState, opts ...ResourceOption) (*Namespace, error)
    public static Namespace Get(string name, Input<string> id, NamespaceState? state, CustomResourceOptions? opts = null)
    public static Namespace get(String name, Output<String> id, NamespaceState 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:
    Description string

    Free form namespace description.

    Meta Dictionary<string, string>

    Specifies arbitrary KV metadata to associate with the namespace.

    Name string

    The namespace name.

    Partition string

    The partition to create the namespace within.

    PolicyDefaults List<string>

    The list of default policies that should be applied to all tokens created in this namespace.

    RoleDefaults List<string>

    The list of default roles that should be applied to all tokens created in this namespace.

    Description string

    Free form namespace description.

    Meta map[string]string

    Specifies arbitrary KV metadata to associate with the namespace.

    Name string

    The namespace name.

    Partition string

    The partition to create the namespace within.

    PolicyDefaults []string

    The list of default policies that should be applied to all tokens created in this namespace.

    RoleDefaults []string

    The list of default roles that should be applied to all tokens created in this namespace.

    description String

    Free form namespace description.

    meta Map<String,String>

    Specifies arbitrary KV metadata to associate with the namespace.

    name String

    The namespace name.

    partition String

    The partition to create the namespace within.

    policyDefaults List<String>

    The list of default policies that should be applied to all tokens created in this namespace.

    roleDefaults List<String>

    The list of default roles that should be applied to all tokens created in this namespace.

    description string

    Free form namespace description.

    meta {[key: string]: string}

    Specifies arbitrary KV metadata to associate with the namespace.

    name string

    The namespace name.

    partition string

    The partition to create the namespace within.

    policyDefaults string[]

    The list of default policies that should be applied to all tokens created in this namespace.

    roleDefaults string[]

    The list of default roles that should be applied to all tokens created in this namespace.

    description str

    Free form namespace description.

    meta Mapping[str, str]

    Specifies arbitrary KV metadata to associate with the namespace.

    name str

    The namespace name.

    partition str

    The partition to create the namespace within.

    policy_defaults Sequence[str]

    The list of default policies that should be applied to all tokens created in this namespace.

    role_defaults Sequence[str]

    The list of default roles that should be applied to all tokens created in this namespace.

    description String

    Free form namespace description.

    meta Map<String>

    Specifies arbitrary KV metadata to associate with the namespace.

    name String

    The namespace name.

    partition String

    The partition to create the namespace within.

    policyDefaults List<String>

    The list of default policies that should be applied to all tokens created in this namespace.

    roleDefaults List<String>

    The list of default roles that should be applied to all tokens created in this namespace.

    Import

    consul_namespace can be imported. This is useful to manage attributes of the default namespace that is created automatically:

     $ pulumi import consul:index/namespace:Namespace default default
    

    Package Details

    Repository
    HashiCorp Consul pulumi/pulumi-consul
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the consul Terraform Provider.

    consul logo
    Consul v3.11.0 published on Monday, Nov 20, 2023 by Pulumi