1. Packages
  2. Packages
  3. Vkcs Provider
  4. API Docs
  5. getKeymanagerSecret
Viewing docs for vkcs 0.15.0
published on Tuesday, May 5, 2026 by vk-cs
Viewing docs for vkcs 0.15.0
published on Tuesday, May 5, 2026 by vk-cs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as vkcs from "@pulumi/vkcs";
    
    const certificate = vkcs.getKeymanagerSecret({
        secretType: "certificate",
    });
    
    import pulumi
    import pulumi_vkcs as vkcs
    
    certificate = vkcs.get_keymanager_secret(secret_type="certificate")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vkcs/vkcs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vkcs.LookupKeymanagerSecret(ctx, &vkcs.LookupKeymanagerSecretArgs{
    			SecretType: pulumi.StringRef("certificate"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vkcs = Pulumi.Vkcs;
    
    return await Deployment.RunAsync(() => 
    {
        var certificate = Vkcs.GetKeymanagerSecret.Invoke(new()
        {
            SecretType = "certificate",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vkcs.VkcsFunctions;
    import com.pulumi.vkcs.inputs.GetKeymanagerSecretArgs;
    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) {
            final var certificate = VkcsFunctions.getKeymanagerSecret(GetKeymanagerSecretArgs.builder()
                .secretType("certificate")
                .build());
    
        }
    }
    
    variables:
      certificate:
        fn::invoke:
          function: vkcs:getKeymanagerSecret
          arguments:
            secretType: certificate
    
    Example coming soon!
    

    Date Filters

    The values for the expiration_filter, created_at_filter, and updated_at_filter parameters are comma-separated lists of time stamps in RFC3339 format. The time stamps can be prefixed with any of these comparison operators: gt: (greater-than), gte: (greater-than-or-equal), lt: (less-than), lte: (less-than-or-equal).

    For example, to get a passphrase a Secret with CBC moda, that will expire in January of 2020:

    import * as pulumi from "@pulumi/pulumi";
    import * as vkcs from "@pulumi/vkcs";
    
    const dateFilterExample = vkcs.getKeymanagerSecret({
        mode: "cbc",
        secretType: "passphrase",
        expirationFilter: "gt:2020-01-01T00:00:00Z",
    });
    
    import pulumi
    import pulumi_vkcs as vkcs
    
    date_filter_example = vkcs.get_keymanager_secret(mode="cbc",
        secret_type="passphrase",
        expiration_filter="gt:2020-01-01T00:00:00Z")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vkcs/vkcs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vkcs.LookupKeymanagerSecret(ctx, &vkcs.LookupKeymanagerSecretArgs{
    			Mode:             pulumi.StringRef("cbc"),
    			SecretType:       pulumi.StringRef("passphrase"),
    			ExpirationFilter: pulumi.StringRef("gt:2020-01-01T00:00:00Z"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vkcs = Pulumi.Vkcs;
    
    return await Deployment.RunAsync(() => 
    {
        var dateFilterExample = Vkcs.GetKeymanagerSecret.Invoke(new()
        {
            Mode = "cbc",
            SecretType = "passphrase",
            ExpirationFilter = "gt:2020-01-01T00:00:00Z",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vkcs.VkcsFunctions;
    import com.pulumi.vkcs.inputs.GetKeymanagerSecretArgs;
    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) {
            final var dateFilterExample = VkcsFunctions.getKeymanagerSecret(GetKeymanagerSecretArgs.builder()
                .mode("cbc")
                .secretType("passphrase")
                .expirationFilter("gt:2020-01-01T00:00:00Z")
                .build());
    
        }
    }
    
    variables:
      dateFilterExample:
        fn::invoke:
          function: vkcs:getKeymanagerSecret
          arguments:
            mode: cbc
            secretType: passphrase
            expirationFilter: gt:2020-01-01T00:00:00Z
    
    Example coming soon!
    

    Using getKeymanagerSecret

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getKeymanagerSecret(args: GetKeymanagerSecretArgs, opts?: InvokeOptions): Promise<GetKeymanagerSecretResult>
    function getKeymanagerSecretOutput(args: GetKeymanagerSecretOutputArgs, opts?: InvokeOptions): Output<GetKeymanagerSecretResult>
    def get_keymanager_secret(acl_only: Optional[bool] = None,
                              algorithm: Optional[str] = None,
                              bit_length: Optional[float] = None,
                              created_at_filter: Optional[str] = None,
                              expiration_filter: Optional[str] = None,
                              mode: Optional[str] = None,
                              name: Optional[str] = None,
                              region: Optional[str] = None,
                              secret_type: Optional[str] = None,
                              updated_at_filter: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetKeymanagerSecretResult
    def get_keymanager_secret_output(acl_only: pulumi.Input[Optional[bool]] = None,
                              algorithm: pulumi.Input[Optional[str]] = None,
                              bit_length: pulumi.Input[Optional[float]] = None,
                              created_at_filter: pulumi.Input[Optional[str]] = None,
                              expiration_filter: pulumi.Input[Optional[str]] = None,
                              mode: pulumi.Input[Optional[str]] = None,
                              name: pulumi.Input[Optional[str]] = None,
                              region: pulumi.Input[Optional[str]] = None,
                              secret_type: pulumi.Input[Optional[str]] = None,
                              updated_at_filter: pulumi.Input[Optional[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetKeymanagerSecretResult]
    func LookupKeymanagerSecret(ctx *Context, args *LookupKeymanagerSecretArgs, opts ...InvokeOption) (*LookupKeymanagerSecretResult, error)
    func LookupKeymanagerSecretOutput(ctx *Context, args *LookupKeymanagerSecretOutputArgs, opts ...InvokeOption) LookupKeymanagerSecretResultOutput

    > Note: This function is named LookupKeymanagerSecret in the Go SDK.

    public static class GetKeymanagerSecret 
    {
        public static Task<GetKeymanagerSecretResult> InvokeAsync(GetKeymanagerSecretArgs args, InvokeOptions? opts = null)
        public static Output<GetKeymanagerSecretResult> Invoke(GetKeymanagerSecretInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetKeymanagerSecretResult> getKeymanagerSecret(GetKeymanagerSecretArgs args, InvokeOptions options)
    public static Output<GetKeymanagerSecretResult> getKeymanagerSecret(GetKeymanagerSecretArgs args, InvokeOptions options)
    
    fn::invoke:
      function: vkcs:index/getKeymanagerSecret:getKeymanagerSecret
      arguments:
        # arguments dictionary
    data "vkcs_getkeymanagersecret" "name" {
        # arguments
    }

    The following arguments are supported:

    AclOnly bool
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    Algorithm string
    optional string β†’ The Secret algorithm.
    BitLength double
    optional number β†’ The Secret bit length.
    CreatedAtFilter string
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    ExpirationFilter string
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    Mode string
    optional string β†’ The Secret mode.
    Name string
    optional string β†’ The Secret name.
    Region string
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    SecretType string
    optional string β†’ The Secret type. For more information see Secret types.
    UpdatedAtFilter string
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.
    AclOnly bool
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    Algorithm string
    optional string β†’ The Secret algorithm.
    BitLength float64
    optional number β†’ The Secret bit length.
    CreatedAtFilter string
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    ExpirationFilter string
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    Mode string
    optional string β†’ The Secret mode.
    Name string
    optional string β†’ The Secret name.
    Region string
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    SecretType string
    optional string β†’ The Secret type. For more information see Secret types.
    UpdatedAtFilter string
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.
    acl_only bool
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    algorithm string
    optional string β†’ The Secret algorithm.
    bit_length number
    optional number β†’ The Secret bit length.
    created_at_filter string
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    expiration_filter string
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    mode string
    optional string β†’ The Secret mode.
    name string
    optional string β†’ The Secret name.
    region string
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    secret_type string
    optional string β†’ The Secret type. For more information see Secret types.
    updated_at_filter string
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.
    aclOnly Boolean
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    algorithm String
    optional string β†’ The Secret algorithm.
    bitLength Double
    optional number β†’ The Secret bit length.
    createdAtFilter String
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    expirationFilter String
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    mode String
    optional string β†’ The Secret mode.
    name String
    optional string β†’ The Secret name.
    region String
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    secretType String
    optional string β†’ The Secret type. For more information see Secret types.
    updatedAtFilter String
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.
    aclOnly boolean
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    algorithm string
    optional string β†’ The Secret algorithm.
    bitLength number
    optional number β†’ The Secret bit length.
    createdAtFilter string
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    expirationFilter string
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    mode string
    optional string β†’ The Secret mode.
    name string
    optional string β†’ The Secret name.
    region string
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    secretType string
    optional string β†’ The Secret type. For more information see Secret types.
    updatedAtFilter string
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.
    acl_only bool
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    algorithm str
    optional string β†’ The Secret algorithm.
    bit_length float
    optional number β†’ The Secret bit length.
    created_at_filter str
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    expiration_filter str
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    mode str
    optional string β†’ The Secret mode.
    name str
    optional string β†’ The Secret name.
    region str
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    secret_type str
    optional string β†’ The Secret type. For more information see Secret types.
    updated_at_filter str
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.
    aclOnly Boolean
    optional boolean β†’ Select the Secret with an ACL that contains the user. Project scope is ignored. Defaults to false.
    algorithm String
    optional string β†’ The Secret algorithm.
    bitLength Number
    optional number β†’ The Secret bit length.
    createdAtFilter String
    optional string β†’ Date filter to select the Secret with created matching the specified criteria. See Date Filters below for more detail.
    expirationFilter String
    optional string β†’ Date filter to select the Secret with expiration matching the specified criteria. See Date Filters below for more detail.
    mode String
    optional string β†’ The Secret mode.
    name String
    optional string β†’ The Secret name.
    region String
    optional string β†’ The region in which to obtain the service client. If omitted, the region argument of the provider is used.
    secretType String
    optional string β†’ The Secret type. For more information see Secret types.
    updatedAtFilter String
    optional string β†’ Date filter to select the Secret with updated matching the specified criteria. See Date Filters below for more detail.

    getKeymanagerSecret Result

    The following output properties are available:

    Acls List<GetKeymanagerSecretAcl>
    list β†’ The list of ACLs assigned to a secret.
    Algorithm string
    BitLength double
    ContentTypes Dictionary<string, string>
    map of string β†’ The map of the content types, assigned on the secret.
    CreatedAt string
    string β†’ The date the secret was created.
    CreatorId string
    string β†’ The creator of the secret.
    Expiration string
    string β†’ The date the secret will expire.
    Id string
    string β†’ ID of the resource.
    Metadata Dictionary<string, string>
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    Mode string
    Name string
    Payload string
    string β†’ The secret payload.
    PayloadContentEncoding string
    string β†’ The Secret encoding.
    PayloadContentType string
    string β†’ The Secret content type.
    Region string
    SecretRef string
    string β†’ The secret reference / where to find the secret.
    SecretType string
    Status string
    string β†’ The status of the secret.
    UpdatedAt string
    string β†’ The date the secret was last updated.
    AclOnly bool
    CreatedAtFilter string
    ExpirationFilter string
    UpdatedAtFilter string
    Acls []GetKeymanagerSecretAcl
    list β†’ The list of ACLs assigned to a secret.
    Algorithm string
    BitLength float64
    ContentTypes map[string]string
    map of string β†’ The map of the content types, assigned on the secret.
    CreatedAt string
    string β†’ The date the secret was created.
    CreatorId string
    string β†’ The creator of the secret.
    Expiration string
    string β†’ The date the secret will expire.
    Id string
    string β†’ ID of the resource.
    Metadata map[string]string
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    Mode string
    Name string
    Payload string
    string β†’ The secret payload.
    PayloadContentEncoding string
    string β†’ The Secret encoding.
    PayloadContentType string
    string β†’ The Secret content type.
    Region string
    SecretRef string
    string β†’ The secret reference / where to find the secret.
    SecretType string
    Status string
    string β†’ The status of the secret.
    UpdatedAt string
    string β†’ The date the secret was last updated.
    AclOnly bool
    CreatedAtFilter string
    ExpirationFilter string
    UpdatedAtFilter string
    acls list(object)
    list β†’ The list of ACLs assigned to a secret.
    algorithm string
    bit_length number
    content_types map(string)
    map of string β†’ The map of the content types, assigned on the secret.
    created_at string
    string β†’ The date the secret was created.
    creator_id string
    string β†’ The creator of the secret.
    expiration string
    string β†’ The date the secret will expire.
    id string
    string β†’ ID of the resource.
    metadata map(string)
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    mode string
    name string
    payload string
    string β†’ The secret payload.
    payload_content_encoding string
    string β†’ The Secret encoding.
    payload_content_type string
    string β†’ The Secret content type.
    region string
    secret_ref string
    string β†’ The secret reference / where to find the secret.
    secret_type string
    status string
    string β†’ The status of the secret.
    updated_at string
    string β†’ The date the secret was last updated.
    acl_only bool
    created_at_filter string
    expiration_filter string
    updated_at_filter string
    acls List<GetKeymanagerSecretAcl>
    list β†’ The list of ACLs assigned to a secret.
    algorithm String
    bitLength Double
    contentTypes Map<String,String>
    map of string β†’ The map of the content types, assigned on the secret.
    createdAt String
    string β†’ The date the secret was created.
    creatorId String
    string β†’ The creator of the secret.
    expiration String
    string β†’ The date the secret will expire.
    id String
    string β†’ ID of the resource.
    metadata Map<String,String>
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    mode String
    name String
    payload String
    string β†’ The secret payload.
    payloadContentEncoding String
    string β†’ The Secret encoding.
    payloadContentType String
    string β†’ The Secret content type.
    region String
    secretRef String
    string β†’ The secret reference / where to find the secret.
    secretType String
    status String
    string β†’ The status of the secret.
    updatedAt String
    string β†’ The date the secret was last updated.
    aclOnly Boolean
    createdAtFilter String
    expirationFilter String
    updatedAtFilter String
    acls GetKeymanagerSecretAcl[]
    list β†’ The list of ACLs assigned to a secret.
    algorithm string
    bitLength number
    contentTypes {[key: string]: string}
    map of string β†’ The map of the content types, assigned on the secret.
    createdAt string
    string β†’ The date the secret was created.
    creatorId string
    string β†’ The creator of the secret.
    expiration string
    string β†’ The date the secret will expire.
    id string
    string β†’ ID of the resource.
    metadata {[key: string]: string}
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    mode string
    name string
    payload string
    string β†’ The secret payload.
    payloadContentEncoding string
    string β†’ The Secret encoding.
    payloadContentType string
    string β†’ The Secret content type.
    region string
    secretRef string
    string β†’ The secret reference / where to find the secret.
    secretType string
    status string
    string β†’ The status of the secret.
    updatedAt string
    string β†’ The date the secret was last updated.
    aclOnly boolean
    createdAtFilter string
    expirationFilter string
    updatedAtFilter string
    acls Sequence[GetKeymanagerSecretAcl]
    list β†’ The list of ACLs assigned to a secret.
    algorithm str
    bit_length float
    content_types Mapping[str, str]
    map of string β†’ The map of the content types, assigned on the secret.
    created_at str
    string β†’ The date the secret was created.
    creator_id str
    string β†’ The creator of the secret.
    expiration str
    string β†’ The date the secret will expire.
    id str
    string β†’ ID of the resource.
    metadata Mapping[str, str]
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    mode str
    name str
    payload str
    string β†’ The secret payload.
    payload_content_encoding str
    string β†’ The Secret encoding.
    payload_content_type str
    string β†’ The Secret content type.
    region str
    secret_ref str
    string β†’ The secret reference / where to find the secret.
    secret_type str
    status str
    string β†’ The status of the secret.
    updated_at str
    string β†’ The date the secret was last updated.
    acl_only bool
    created_at_filter str
    expiration_filter str
    updated_at_filter str
    acls List<Property Map>
    list β†’ The list of ACLs assigned to a secret.
    algorithm String
    bitLength Number
    contentTypes Map<String>
    map of string β†’ The map of the content types, assigned on the secret.
    createdAt String
    string β†’ The date the secret was created.
    creatorId String
    string β†’ The creator of the secret.
    expiration String
    string β†’ The date the secret will expire.
    id String
    string β†’ ID of the resource.
    metadata Map<String>
    map of string β†’ The map of metadata, assigned on the secret, which has been explicitly and implicitly added.
    mode String
    name String
    payload String
    string β†’ The secret payload.
    payloadContentEncoding String
    string β†’ The Secret encoding.
    payloadContentType String
    string β†’ The Secret content type.
    region String
    secretRef String
    string β†’ The secret reference / where to find the secret.
    secretType String
    status String
    string β†’ The status of the secret.
    updatedAt String
    string β†’ The date the secret was last updated.
    aclOnly Boolean
    createdAtFilter String
    expirationFilter String
    updatedAtFilter String

    Supporting Types

    GetKeymanagerSecretAcl

    Reads List<GetKeymanagerSecretAclRead>
    list β†’ Block that describes read operation.
    Reads []GetKeymanagerSecretAclRead
    list β†’ Block that describes read operation.
    reads list(object)
    list β†’ Block that describes read operation.
    reads List<GetKeymanagerSecretAclRead>
    list β†’ Block that describes read operation.
    reads GetKeymanagerSecretAclRead[]
    list β†’ Block that describes read operation.
    reads Sequence[GetKeymanagerSecretAclRead]
    list β†’ Block that describes read operation.
    reads List<Property Map>
    list β†’ Block that describes read operation.

    GetKeymanagerSecretAclRead

    CreatedAt string
    string β†’ The date the secret was created.
    UpdatedAt string
    string β†’ The date the secret was last updated.
    ProjectAccess bool
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    Users List<string>
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.
    CreatedAt string
    string β†’ The date the secret was created.
    UpdatedAt string
    string β†’ The date the secret was last updated.
    ProjectAccess bool
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    Users []string
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.
    created_at string
    string β†’ The date the secret was created.
    updated_at string
    string β†’ The date the secret was last updated.
    project_access bool
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    users list(string)
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.
    createdAt String
    string β†’ The date the secret was created.
    updatedAt String
    string β†’ The date the secret was last updated.
    projectAccess Boolean
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    users List<String>
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.
    createdAt string
    string β†’ The date the secret was created.
    updatedAt string
    string β†’ The date the secret was last updated.
    projectAccess boolean
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    users string[]
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.
    created_at str
    string β†’ The date the secret was created.
    updated_at str
    string β†’ The date the secret was last updated.
    project_access bool
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    users Sequence[str]
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.
    createdAt String
    string β†’ The date the secret was created.
    updatedAt String
    string β†’ The date the secret was last updated.
    projectAccess Boolean
    boolean β†’ Whether the container is accessible project wide. Defaults to true.
    users List<String>
    set of string β†’ The list of user IDs, which are allowed to access the container, when project_access is set to false.

    Package Details

    Repository
    vkcs vk-cs/terraform-provider-vkcs
    License
    Notes
    This Pulumi package is based on the vkcs Terraform Provider.
    Viewing docs for vkcs 0.15.0
    published on Tuesday, May 5, 2026 by vk-cs
      Try Pulumi Cloud free. Your team will thank you.