vault.ad.SecretLibrary
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const config = new vault.ad.SecretBackend("config", {
backend: "ad",
binddn: "CN=Administrator,CN=Users,DC=corp,DC=example,DC=net",
bindpass: "SuperSecretPassw0rd",
url: "ldaps://ad",
insecureTls: true,
userdn: "CN=Users,DC=corp,DC=example,DC=net",
});
const qa = new vault.ad.SecretLibrary("qa", {
backend: config.backend,
name: "qa",
serviceAccountNames: [
"Bob",
"Mary",
],
ttl: 60,
disableCheckInEnforcement: true,
maxTtl: 120,
});
import pulumi
import pulumi_vault as vault
config = vault.ad.SecretBackend("config",
backend="ad",
binddn="CN=Administrator,CN=Users,DC=corp,DC=example,DC=net",
bindpass="SuperSecretPassw0rd",
url="ldaps://ad",
insecure_tls=True,
userdn="CN=Users,DC=corp,DC=example,DC=net")
qa = vault.ad.SecretLibrary("qa",
backend=config.backend,
name="qa",
service_account_names=[
"Bob",
"Mary",
],
ttl=60,
disable_check_in_enforcement=True,
max_ttl=120)
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/ad"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
config, err := ad.NewSecretBackend(ctx, "config", &ad.SecretBackendArgs{
Backend: pulumi.String("ad"),
Binddn: pulumi.String("CN=Administrator,CN=Users,DC=corp,DC=example,DC=net"),
Bindpass: pulumi.String("SuperSecretPassw0rd"),
Url: pulumi.String("ldaps://ad"),
InsecureTls: pulumi.Bool(true),
Userdn: pulumi.String("CN=Users,DC=corp,DC=example,DC=net"),
})
if err != nil {
return err
}
_, err = ad.NewSecretLibrary(ctx, "qa", &ad.SecretLibraryArgs{
Backend: config.Backend,
Name: pulumi.String("qa"),
ServiceAccountNames: pulumi.StringArray{
pulumi.String("Bob"),
pulumi.String("Mary"),
},
Ttl: pulumi.Int(60),
DisableCheckInEnforcement: pulumi.Bool(true),
MaxTtl: pulumi.Int(120),
})
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 config = new Vault.AD.SecretBackend("config", new()
{
Backend = "ad",
Binddn = "CN=Administrator,CN=Users,DC=corp,DC=example,DC=net",
Bindpass = "SuperSecretPassw0rd",
Url = "ldaps://ad",
InsecureTls = true,
Userdn = "CN=Users,DC=corp,DC=example,DC=net",
});
var qa = new Vault.AD.SecretLibrary("qa", new()
{
Backend = config.Backend,
Name = "qa",
ServiceAccountNames = new[]
{
"Bob",
"Mary",
},
Ttl = 60,
DisableCheckInEnforcement = true,
MaxTtl = 120,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.ad.SecretBackend;
import com.pulumi.vault.ad.SecretBackendArgs;
import com.pulumi.vault.ad.SecretLibrary;
import com.pulumi.vault.ad.SecretLibraryArgs;
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 config = new SecretBackend("config", SecretBackendArgs.builder()
.backend("ad")
.binddn("CN=Administrator,CN=Users,DC=corp,DC=example,DC=net")
.bindpass("SuperSecretPassw0rd")
.url("ldaps://ad")
.insecureTls("true")
.userdn("CN=Users,DC=corp,DC=example,DC=net")
.build());
var qa = new SecretLibrary("qa", SecretLibraryArgs.builder()
.backend(config.backend())
.name("qa")
.serviceAccountNames(
"Bob",
"Mary")
.ttl(60)
.disableCheckInEnforcement(true)
.maxTtl(120)
.build());
}
}
resources:
config:
type: vault:ad:SecretBackend
properties:
backend: ad
binddn: CN=Administrator,CN=Users,DC=corp,DC=example,DC=net
bindpass: SuperSecretPassw0rd
url: ldaps://ad
insecureTls: 'true'
userdn: CN=Users,DC=corp,DC=example,DC=net
qa:
type: vault:ad:SecretLibrary
properties:
backend: ${config.backend}
name: qa
serviceAccountNames:
- Bob
- Mary
ttl: 60
disableCheckInEnforcement: true
maxTtl: 120
Create SecretLibrary Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecretLibrary(name: string, args: SecretLibraryArgs, opts?: CustomResourceOptions);
@overload
def SecretLibrary(resource_name: str,
args: SecretLibraryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SecretLibrary(resource_name: str,
opts: Optional[ResourceOptions] = None,
backend: Optional[str] = None,
service_account_names: Optional[Sequence[str]] = None,
disable_check_in_enforcement: Optional[bool] = None,
max_ttl: Optional[int] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
ttl: Optional[int] = None)
func NewSecretLibrary(ctx *Context, name string, args SecretLibraryArgs, opts ...ResourceOption) (*SecretLibrary, error)
public SecretLibrary(string name, SecretLibraryArgs args, CustomResourceOptions? opts = null)
public SecretLibrary(String name, SecretLibraryArgs args)
public SecretLibrary(String name, SecretLibraryArgs args, CustomResourceOptions options)
type: vault:ad:SecretLibrary
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 SecretLibraryArgs
- 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 SecretLibraryArgs
- 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 SecretLibraryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretLibraryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecretLibraryArgs
- 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 secretLibraryResource = new Vault.AD.SecretLibrary("secretLibraryResource", new()
{
Backend = "string",
ServiceAccountNames = new[]
{
"string",
},
DisableCheckInEnforcement = false,
MaxTtl = 0,
Name = "string",
Namespace = "string",
Ttl = 0,
});
example, err := ad.NewSecretLibrary(ctx, "secretLibraryResource", &ad.SecretLibraryArgs{
Backend: pulumi.String("string"),
ServiceAccountNames: pulumi.StringArray{
pulumi.String("string"),
},
DisableCheckInEnforcement: pulumi.Bool(false),
MaxTtl: pulumi.Int(0),
Name: pulumi.String("string"),
Namespace: pulumi.String("string"),
Ttl: pulumi.Int(0),
})
var secretLibraryResource = new SecretLibrary("secretLibraryResource", SecretLibraryArgs.builder()
.backend("string")
.serviceAccountNames("string")
.disableCheckInEnforcement(false)
.maxTtl(0)
.name("string")
.namespace("string")
.ttl(0)
.build());
secret_library_resource = vault.ad.SecretLibrary("secretLibraryResource",
backend="string",
service_account_names=["string"],
disable_check_in_enforcement=False,
max_ttl=0,
name="string",
namespace="string",
ttl=0)
const secretLibraryResource = new vault.ad.SecretLibrary("secretLibraryResource", {
backend: "string",
serviceAccountNames: ["string"],
disableCheckInEnforcement: false,
maxTtl: 0,
name: "string",
namespace: "string",
ttl: 0,
});
type: vault:ad:SecretLibrary
properties:
backend: string
disableCheckInEnforcement: false
maxTtl: 0
name: string
namespace: string
serviceAccountNames:
- string
ttl: 0
SecretLibrary 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 SecretLibrary resource accepts the following input properties:
- Backend string
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - Service
Account List<string>Names - Specifies the slice of service accounts mapped to this set.
- Disable
Check boolIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- Max
Ttl int - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- Name string
- The name to identify this set of service accounts. Must be unique within the 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. - Ttl int
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- Backend string
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - Service
Account []stringNames - Specifies the slice of service accounts mapped to this set.
- Disable
Check boolIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- Max
Ttl int - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- Name string
- The name to identify this set of service accounts. Must be unique within the 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. - Ttl int
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend String
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - service
Account List<String>Names - Specifies the slice of service accounts mapped to this set.
- disable
Check BooleanIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max
Ttl Integer - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name String
- The name to identify this set of service accounts. Must be unique within the 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. - ttl Integer
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend string
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - service
Account string[]Names - Specifies the slice of service accounts mapped to this set.
- disable
Check booleanIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max
Ttl number - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name string
- The name to identify this set of service accounts. Must be unique within the 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. - ttl number
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend str
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - service_
account_ Sequence[str]names - Specifies the slice of service accounts mapped to this set.
- disable_
check_ boolin_ enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max_
ttl int - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name str
- The name to identify this set of service accounts. Must be unique within the 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. - ttl int
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend String
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - service
Account List<String>Names - Specifies the slice of service accounts mapped to this set.
- disable
Check BooleanIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max
Ttl Number - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name String
- The name to identify this set of service accounts. Must be unique within the 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. - ttl Number
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
Outputs
All input properties are implicitly available as output properties. Additionally, the SecretLibrary 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 SecretLibrary Resource
Get an existing SecretLibrary 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?: SecretLibraryState, opts?: CustomResourceOptions): SecretLibrary
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backend: Optional[str] = None,
disable_check_in_enforcement: Optional[bool] = None,
max_ttl: Optional[int] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
service_account_names: Optional[Sequence[str]] = None,
ttl: Optional[int] = None) -> SecretLibrary
func GetSecretLibrary(ctx *Context, name string, id IDInput, state *SecretLibraryState, opts ...ResourceOption) (*SecretLibrary, error)
public static SecretLibrary Get(string name, Input<string> id, SecretLibraryState? state, CustomResourceOptions? opts = null)
public static SecretLibrary get(String name, Output<String> id, SecretLibraryState 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.
- Backend string
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - Disable
Check boolIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- Max
Ttl int - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- Name string
- The name to identify this set of service accounts. Must be unique within the 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. - Service
Account List<string>Names - Specifies the slice of service accounts mapped to this set.
- Ttl int
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- Backend string
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - Disable
Check boolIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- Max
Ttl int - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- Name string
- The name to identify this set of service accounts. Must be unique within the 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. - Service
Account []stringNames - Specifies the slice of service accounts mapped to this set.
- Ttl int
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend String
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - disable
Check BooleanIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max
Ttl Integer - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name String
- The name to identify this set of service accounts. Must be unique within the 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. - service
Account List<String>Names - Specifies the slice of service accounts mapped to this set.
- ttl Integer
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend string
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - disable
Check booleanIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max
Ttl number - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name string
- The name to identify this set of service accounts. Must be unique within the 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. - service
Account string[]Names - Specifies the slice of service accounts mapped to this set.
- ttl number
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend str
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - disable_
check_ boolin_ enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max_
ttl int - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name str
- The name to identify this set of service accounts. Must be unique within the 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. - service_
account_ Sequence[str]names - Specifies the slice of service accounts mapped to this set.
- ttl int
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
- backend String
- The path the AD secret backend is mounted at,
with no leading or trailing
/
s. - disable
Check BooleanIn Enforcement - Disable enforcing that service accounts must be checked in by the entity or client token that checked them out.
- max
Ttl Number - The maximum password time-to-live in seconds. Defaults to the configuration max_ttl if not provided.
- name String
- The name to identify this set of service accounts. Must be unique within the 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. - service
Account List<String>Names - Specifies the slice of service accounts mapped to this set.
- ttl Number
- The password time-to-live in seconds. Defaults to the configuration ttl if not provided.
Import
AD secret backend libraries can be imported using the path
, e.g.
$ pulumi import vault:ad/secretLibrary:SecretLibrary role ad/library/bob
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.