1. Packages
  2. HashiCorp Consul
  3. API Docs
  4. Keys
Consul v3.11.1 published on Friday, Jan 19, 2024 by Pulumi

consul.Keys

Explore with Pulumi AI

consul logo
Consul v3.11.1 published on Friday, Jan 19, 2024 by Pulumi

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Consul = Pulumi.Consul;
    
    return await Deployment.RunAsync(() => 
    {
        var app = new Consul.Keys("app", new()
        {
            Datacenter = "nyc1",
            KeysCollection = new[]
            {
                new Consul.Inputs.KeysKeyArgs
                {
                    Path = "service/app/elb_address",
                    Value = aws_elb.App.Dns_name,
                },
            },
            Token = "abcd",
        });
    
    });
    
    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.NewKeys(ctx, "app", &consul.KeysArgs{
    			Datacenter: pulumi.String("nyc1"),
    			Keys: consul.KeysKeyArray{
    				&consul.KeysKeyArgs{
    					Path:  pulumi.String("service/app/elb_address"),
    					Value: pulumi.Any(aws_elb.App.Dns_name),
    				},
    			},
    			Token: pulumi.String("abcd"),
    		})
    		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.Keys;
    import com.pulumi.consul.KeysArgs;
    import com.pulumi.consul.inputs.KeysKeyArgs;
    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 app = new Keys("app", KeysArgs.builder()        
                .datacenter("nyc1")
                .keys(KeysKeyArgs.builder()
                    .path("service/app/elb_address")
                    .value(aws_elb.app().dns_name())
                    .build())
                .token("abcd")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_consul as consul
    
    app = consul.Keys("app",
        datacenter="nyc1",
        keys=[consul.KeysKeyArgs(
            path="service/app/elb_address",
            value=aws_elb["app"]["dns_name"],
        )],
        token="abcd")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as consul from "@pulumi/consul";
    
    const app = new consul.Keys("app", {
        datacenter: "nyc1",
        keys: [{
            path: "service/app/elb_address",
            value: aws_elb.app.dns_name,
        }],
        token: "abcd",
    });
    
    resources:
      app:
        type: consul:Keys
        properties:
          datacenter: nyc1
          # Set the CNAME of our load balancer as a key
          keys:
            - path: service/app/elb_address
              value: ${aws_elb.app.dns_name}
          token: abcd
    

    Create Keys Resource

    new Keys(name: string, args?: KeysArgs, opts?: CustomResourceOptions);
    @overload
    def Keys(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             datacenter: Optional[str] = None,
             keys: Optional[Sequence[KeysKeyArgs]] = None,
             namespace: Optional[str] = None,
             partition: Optional[str] = None,
             token: Optional[str] = None)
    @overload
    def Keys(resource_name: str,
             args: Optional[KeysArgs] = None,
             opts: Optional[ResourceOptions] = None)
    func NewKeys(ctx *Context, name string, args *KeysArgs, opts ...ResourceOption) (*Keys, error)
    public Keys(string name, KeysArgs? args = null, CustomResourceOptions? opts = null)
    public Keys(String name, KeysArgs args)
    public Keys(String name, KeysArgs args, CustomResourceOptions options)
    
    type: consul:Keys
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args KeysArgs
    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 KeysArgs
    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 KeysArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KeysArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KeysArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Datacenter string
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    KeysCollection List<KeysKey>
    Specifies a key in Consul to be written. Supported values documented below.
    Namespace string
    The namespace to create the keys within.
    Partition string
    The partition to create the keys within.
    Token string
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    Datacenter string
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    Keys []KeysKeyArgs
    Specifies a key in Consul to be written. Supported values documented below.
    Namespace string
    The namespace to create the keys within.
    Partition string
    The partition to create the keys within.
    Token string
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    datacenter String
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys List<KeysKey>
    Specifies a key in Consul to be written. Supported values documented below.
    namespace String
    The namespace to create the keys within.
    partition String
    The partition to create the keys within.
    token String
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    datacenter string
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys KeysKey[]
    Specifies a key in Consul to be written. Supported values documented below.
    namespace string
    The namespace to create the keys within.
    partition string
    The partition to create the keys within.
    token string
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    datacenter str
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys Sequence[KeysKeyArgs]
    Specifies a key in Consul to be written. Supported values documented below.
    namespace str
    The namespace to create the keys within.
    partition str
    The partition to create the keys within.
    token str
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    datacenter String
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys List<Property Map>
    Specifies a key in Consul to be written. Supported values documented below.
    namespace String
    The namespace to create the keys within.
    partition String
    The partition to create the keys within.
    token String
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Keys resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Var Dictionary<string, string>
    Id string
    The provider-assigned unique ID for this managed resource.
    Var map[string]string
    id String
    The provider-assigned unique ID for this managed resource.
    var_ Map<String,String>
    id string
    The provider-assigned unique ID for this managed resource.
    var {[key: string]: string}
    id str
    The provider-assigned unique ID for this managed resource.
    var Mapping[str, str]
    id String
    The provider-assigned unique ID for this managed resource.
    var Map<String>

    Look up Existing Keys Resource

    Get an existing Keys 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?: KeysState, opts?: CustomResourceOptions): Keys
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            datacenter: Optional[str] = None,
            keys: Optional[Sequence[KeysKeyArgs]] = None,
            namespace: Optional[str] = None,
            partition: Optional[str] = None,
            token: Optional[str] = None,
            var: Optional[Mapping[str, str]] = None) -> Keys
    func GetKeys(ctx *Context, name string, id IDInput, state *KeysState, opts ...ResourceOption) (*Keys, error)
    public static Keys Get(string name, Input<string> id, KeysState? state, CustomResourceOptions? opts = null)
    public static Keys get(String name, Output<String> id, KeysState 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:
    Datacenter string
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    KeysCollection List<KeysKey>
    Specifies a key in Consul to be written. Supported values documented below.
    Namespace string
    The namespace to create the keys within.
    Partition string
    The partition to create the keys within.
    Token string
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    Var Dictionary<string, string>
    Datacenter string
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    Keys []KeysKeyArgs
    Specifies a key in Consul to be written. Supported values documented below.
    Namespace string
    The namespace to create the keys within.
    Partition string
    The partition to create the keys within.
    Token string
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    Var map[string]string
    datacenter String
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys List<KeysKey>
    Specifies a key in Consul to be written. Supported values documented below.
    namespace String
    The namespace to create the keys within.
    partition String
    The partition to create the keys within.
    token String
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    var_ Map<String,String>
    datacenter string
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys KeysKey[]
    Specifies a key in Consul to be written. Supported values documented below.
    namespace string
    The namespace to create the keys within.
    partition string
    The partition to create the keys within.
    token string
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    var {[key: string]: string}
    datacenter str
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys Sequence[KeysKeyArgs]
    Specifies a key in Consul to be written. Supported values documented below.
    namespace str
    The namespace to create the keys within.
    partition str
    The partition to create the keys within.
    token str
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    var Mapping[str, str]
    datacenter String
    The datacenter to use. This overrides the agent's default datacenter and the datacenter in the provider setup.
    keys List<Property Map>
    Specifies a key in Consul to be written. Supported values documented below.
    namespace String
    The namespace to create the keys within.
    partition String
    The partition to create the keys within.
    token String
    The ACL token to use. This overrides the token that the agent provides by default.

    Deprecated:The token argument has been deprecated and will be removed in a future release. Please use the token argument in the provider configuration

    var Map<String>

    Supporting Types

    KeysKey, KeysKeyArgs

    Path string
    This is the path in Consul that should be written to.
    Default string
    Delete bool
    If true, then the key will be deleted when either its configuration block is removed from the configuration or the entire resource is destroyed. Otherwise, it will be left in Consul. Defaults to false.
    Flags int
    An unsigned integer value to attach to the key (defaults to 0).
    Name string

    Deprecated:Using consul_keys resource to read is deprecated; please use consul_keys data source instead

    Value string
    The value to write to the given path.
    Path string
    This is the path in Consul that should be written to.
    Default string
    Delete bool
    If true, then the key will be deleted when either its configuration block is removed from the configuration or the entire resource is destroyed. Otherwise, it will be left in Consul. Defaults to false.
    Flags int
    An unsigned integer value to attach to the key (defaults to 0).
    Name string

    Deprecated:Using consul_keys resource to read is deprecated; please use consul_keys data source instead

    Value string
    The value to write to the given path.
    path String
    This is the path in Consul that should be written to.
    default_ String
    delete Boolean
    If true, then the key will be deleted when either its configuration block is removed from the configuration or the entire resource is destroyed. Otherwise, it will be left in Consul. Defaults to false.
    flags Integer
    An unsigned integer value to attach to the key (defaults to 0).
    name String

    Deprecated:Using consul_keys resource to read is deprecated; please use consul_keys data source instead

    value String
    The value to write to the given path.
    path string
    This is the path in Consul that should be written to.
    default string
    delete boolean
    If true, then the key will be deleted when either its configuration block is removed from the configuration or the entire resource is destroyed. Otherwise, it will be left in Consul. Defaults to false.
    flags number
    An unsigned integer value to attach to the key (defaults to 0).
    name string

    Deprecated:Using consul_keys resource to read is deprecated; please use consul_keys data source instead

    value string
    The value to write to the given path.
    path str
    This is the path in Consul that should be written to.
    default str
    delete bool
    If true, then the key will be deleted when either its configuration block is removed from the configuration or the entire resource is destroyed. Otherwise, it will be left in Consul. Defaults to false.
    flags int
    An unsigned integer value to attach to the key (defaults to 0).
    name str

    Deprecated:Using consul_keys resource to read is deprecated; please use consul_keys data source instead

    value str
    The value to write to the given path.
    path String
    This is the path in Consul that should be written to.
    default String
    delete Boolean
    If true, then the key will be deleted when either its configuration block is removed from the configuration or the entire resource is destroyed. Otherwise, it will be left in Consul. Defaults to false.
    flags Number
    An unsigned integer value to attach to the key (defaults to 0).
    name String

    Deprecated:Using consul_keys resource to read is deprecated; please use consul_keys data source instead

    value String
    The value to write to the given path.

    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.1 published on Friday, Jan 19, 2024 by Pulumi