vault.terraformcloud.SecretBackend
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const test = new vault.terraformcloud.SecretBackend("test", {
backend: "terraform",
description: "Manages the Terraform Cloud backend",
token: "V0idfhi2iksSDU234ucdbi2nidsi...",
});
import pulumi
import pulumi_vault as vault
test = vault.terraformcloud.SecretBackend("test",
backend="terraform",
description="Manages the Terraform Cloud backend",
token="V0idfhi2iksSDU234ucdbi2nidsi...")
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/terraformcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := terraformcloud.NewSecretBackend(ctx, "test", &terraformcloud.SecretBackendArgs{
Backend: pulumi.String("terraform"),
Description: pulumi.String("Manages the Terraform Cloud backend"),
Token: pulumi.String("V0idfhi2iksSDU234ucdbi2nidsi..."),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var test = new Vault.TerraformCloud.SecretBackend("test", new()
{
Backend = "terraform",
Description = "Manages the Terraform Cloud backend",
Token = "V0idfhi2iksSDU234ucdbi2nidsi...",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.terraformcloud.SecretBackend;
import com.pulumi.vault.terraformcloud.SecretBackendArgs;
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 SecretBackend("test", SecretBackendArgs.builder()
.backend("terraform")
.description("Manages the Terraform Cloud backend")
.token("V0idfhi2iksSDU234ucdbi2nidsi...")
.build());
}
}
resources:
test:
type: vault:terraformcloud:SecretBackend
properties:
backend: terraform
description: Manages the Terraform Cloud backend
token: V0idfhi2iksSDU234ucdbi2nidsi...
Create SecretBackend Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecretBackend(name: string, args?: SecretBackendArgs, opts?: CustomResourceOptions);
@overload
def SecretBackend(resource_name: str,
args: Optional[SecretBackendArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SecretBackend(resource_name: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
backend: Optional[str] = None,
base_path: Optional[str] = None,
default_lease_ttl_seconds: Optional[int] = None,
description: Optional[str] = None,
disable_remount: Optional[bool] = None,
max_lease_ttl_seconds: Optional[int] = None,
namespace: Optional[str] = None,
token: Optional[str] = None)
func NewSecretBackend(ctx *Context, name string, args *SecretBackendArgs, opts ...ResourceOption) (*SecretBackend, error)
public SecretBackend(string name, SecretBackendArgs? args = null, CustomResourceOptions? opts = null)
public SecretBackend(String name, SecretBackendArgs args)
public SecretBackend(String name, SecretBackendArgs args, CustomResourceOptions options)
type: vault:terraformcloud:SecretBackend
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 SecretBackendArgs
- 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 SecretBackendArgs
- 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 SecretBackendArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretBackendArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecretBackendArgs
- 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 examplesecretBackendResourceResourceFromTerraformcloudsecretBackend = new Vault.TerraformCloud.SecretBackend("examplesecretBackendResourceResourceFromTerraformcloudsecretBackend", new()
{
Address = "string",
Backend = "string",
BasePath = "string",
DefaultLeaseTtlSeconds = 0,
Description = "string",
DisableRemount = false,
MaxLeaseTtlSeconds = 0,
Namespace = "string",
Token = "string",
});
example, err := terraformcloud.NewSecretBackend(ctx, "examplesecretBackendResourceResourceFromTerraformcloudsecretBackend", &terraformcloud.SecretBackendArgs{
Address: pulumi.String("string"),
Backend: pulumi.String("string"),
BasePath: pulumi.String("string"),
DefaultLeaseTtlSeconds: pulumi.Int(0),
Description: pulumi.String("string"),
DisableRemount: pulumi.Bool(false),
MaxLeaseTtlSeconds: pulumi.Int(0),
Namespace: pulumi.String("string"),
Token: pulumi.String("string"),
})
var examplesecretBackendResourceResourceFromTerraformcloudsecretBackend = new SecretBackend("examplesecretBackendResourceResourceFromTerraformcloudsecretBackend", SecretBackendArgs.builder()
.address("string")
.backend("string")
.basePath("string")
.defaultLeaseTtlSeconds(0)
.description("string")
.disableRemount(false)
.maxLeaseTtlSeconds(0)
.namespace("string")
.token("string")
.build());
examplesecret_backend_resource_resource_from_terraformcloudsecret_backend = vault.terraformcloud.SecretBackend("examplesecretBackendResourceResourceFromTerraformcloudsecretBackend",
address="string",
backend="string",
base_path="string",
default_lease_ttl_seconds=0,
description="string",
disable_remount=False,
max_lease_ttl_seconds=0,
namespace="string",
token="string")
const examplesecretBackendResourceResourceFromTerraformcloudsecretBackend = new vault.terraformcloud.SecretBackend("examplesecretBackendResourceResourceFromTerraformcloudsecretBackend", {
address: "string",
backend: "string",
basePath: "string",
defaultLeaseTtlSeconds: 0,
description: "string",
disableRemount: false,
maxLeaseTtlSeconds: 0,
namespace: "string",
token: "string",
});
type: vault:terraformcloud:SecretBackend
properties:
address: string
backend: string
basePath: string
defaultLeaseTtlSeconds: 0
description: string
disableRemount: false
maxLeaseTtlSeconds: 0
namespace: string
token: string
SecretBackend 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 SecretBackend resource accepts the following input properties:
- Address string
- Backend string
- Base
Path string - Default
Lease intTtl Seconds - The default TTL for credentials issued by this backend.
- Description string
- A human-friendly description for this backend.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Max
Lease intTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Token string
- Address string
- Backend string
- Base
Path string - Default
Lease intTtl Seconds - The default TTL for credentials issued by this backend.
- Description string
- A human-friendly description for this backend.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Max
Lease intTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Token string
- address String
- backend String
- base
Path String - default
Lease IntegerTtl Seconds - The default TTL for credentials issued by this backend.
- description String
- A human-friendly description for this backend.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max
Lease IntegerTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token String
- address string
- backend string
- base
Path string - default
Lease numberTtl Seconds - The default TTL for credentials issued by this backend.
- description string
- A human-friendly description for this backend.
- disable
Remount boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max
Lease numberTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token string
- address str
- backend str
- base_
path str - default_
lease_ intttl_ seconds - The default TTL for credentials issued by this backend.
- description str
- A human-friendly description for this backend.
- disable_
remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max_
lease_ intttl_ seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token str
- address String
- backend String
- base
Path String - default
Lease NumberTtl Seconds - The default TTL for credentials issued by this backend.
- description String
- A human-friendly description for this backend.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max
Lease NumberTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token String
Outputs
All input properties are implicitly available as output properties. Additionally, the SecretBackend 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 SecretBackend Resource
Get an existing SecretBackend 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?: SecretBackendState, opts?: CustomResourceOptions): SecretBackend
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
backend: Optional[str] = None,
base_path: Optional[str] = None,
default_lease_ttl_seconds: Optional[int] = None,
description: Optional[str] = None,
disable_remount: Optional[bool] = None,
max_lease_ttl_seconds: Optional[int] = None,
namespace: Optional[str] = None,
token: Optional[str] = None) -> SecretBackend
func GetSecretBackend(ctx *Context, name string, id IDInput, state *SecretBackendState, opts ...ResourceOption) (*SecretBackend, error)
public static SecretBackend Get(string name, Input<string> id, SecretBackendState? state, CustomResourceOptions? opts = null)
public static SecretBackend get(String name, Output<String> id, SecretBackendState 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.
- Address string
- Backend string
- Base
Path string - Default
Lease intTtl Seconds - The default TTL for credentials issued by this backend.
- Description string
- A human-friendly description for this backend.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Max
Lease intTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Token string
- Address string
- Backend string
- Base
Path string - Default
Lease intTtl Seconds - The default TTL for credentials issued by this backend.
- Description string
- A human-friendly description for this backend.
- Disable
Remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- Max
Lease intTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Token string
- address String
- backend String
- base
Path String - default
Lease IntegerTtl Seconds - The default TTL for credentials issued by this backend.
- description String
- A human-friendly description for this backend.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max
Lease IntegerTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token String
- address string
- backend string
- base
Path string - default
Lease numberTtl Seconds - The default TTL for credentials issued by this backend.
- description string
- A human-friendly description for this backend.
- disable
Remount boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max
Lease numberTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token string
- address str
- backend str
- base_
path str - default_
lease_ intttl_ seconds - The default TTL for credentials issued by this backend.
- description str
- A human-friendly description for this backend.
- disable_
remount bool - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max_
lease_ intttl_ seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token str
- address String
- backend String
- base
Path String - default
Lease NumberTtl Seconds - The default TTL for credentials issued by this backend.
- description String
- A human-friendly description for this backend.
- disable
Remount Boolean - If set, opts out of mount migration on path updates. See here for more info on Mount Migration
- max
Lease NumberTtl Seconds - The maximum TTL that can be requested for credentials issued by this backend.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - token String
Import
Terraform Cloud secret backends can be imported using the backend
, e.g.
$ pulumi import vault:terraformcloud/secretBackend:SecretBackend example terraform
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.