1. Packages
  2. Packages
  3. Akeyless Provider
  4. API Docs
  5. RotatedSecretHashiVault
Viewing docs for akeyless 2.0.2
published on Thursday, Jun 18, 2026 by akeyless-community
Viewing docs for akeyless 2.0.2
published on Thursday, Jun 18, 2026 by akeyless-community

    HashiVault rotated secret resource

    Create RotatedSecretHashiVault Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RotatedSecretHashiVault(name: string, args: RotatedSecretHashiVaultArgs, opts?: CustomResourceOptions);
    @overload
    def RotatedSecretHashiVault(resource_name: str,
                                args: RotatedSecretHashiVaultArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def RotatedSecretHashiVault(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                target_name: Optional[str] = None,
                                output_rules: Optional[Sequence[str]] = None,
                                rotation_event_ins: Optional[Sequence[str]] = None,
                                input_rules: Optional[Sequence[str]] = None,
                                item_custom_fields: Optional[Mapping[str, str]] = None,
                                key: Optional[str] = None,
                                max_versions: Optional[str] = None,
                                description: Optional[str] = None,
                                password_length: Optional[str] = None,
                                name: Optional[str] = None,
                                rotated_secret_hashi_vault_id: Optional[str] = None,
                                auto_rotate: Optional[str] = None,
                                rotation_hour: Optional[float] = None,
                                rotation_interval: Optional[str] = None,
                                tags: Optional[Sequence[str]] = None,
                                delete_protection: Optional[str] = None)
    func NewRotatedSecretHashiVault(ctx *Context, name string, args RotatedSecretHashiVaultArgs, opts ...ResourceOption) (*RotatedSecretHashiVault, error)
    public RotatedSecretHashiVault(string name, RotatedSecretHashiVaultArgs args, CustomResourceOptions? opts = null)
    public RotatedSecretHashiVault(String name, RotatedSecretHashiVaultArgs args)
    public RotatedSecretHashiVault(String name, RotatedSecretHashiVaultArgs args, CustomResourceOptions options)
    
    type: akeyless:RotatedSecretHashiVault
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "akeyless_rotatedsecrethashivault" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args RotatedSecretHashiVaultArgs
    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 RotatedSecretHashiVaultArgs
    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 RotatedSecretHashiVaultArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RotatedSecretHashiVaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RotatedSecretHashiVaultArgs
    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 rotatedSecretHashiVaultResource = new Akeyless.RotatedSecretHashiVault("rotatedSecretHashiVaultResource", new()
    {
        TargetName = "string",
        OutputRules = new[]
        {
            "string",
        },
        RotationEventIns = new[]
        {
            "string",
        },
        InputRules = new[]
        {
            "string",
        },
        ItemCustomFields = 
        {
            { "string", "string" },
        },
        Key = "string",
        MaxVersions = "string",
        Description = "string",
        PasswordLength = "string",
        Name = "string",
        RotatedSecretHashiVaultId = "string",
        AutoRotate = "string",
        RotationHour = 0,
        RotationInterval = "string",
        Tags = new[]
        {
            "string",
        },
        DeleteProtection = "string",
    });
    
    example, err := akeyless.NewRotatedSecretHashiVault(ctx, "rotatedSecretHashiVaultResource", &akeyless.RotatedSecretHashiVaultArgs{
    	TargetName: pulumi.String("string"),
    	OutputRules: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	RotationEventIns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	InputRules: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ItemCustomFields: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Key:                       pulumi.String("string"),
    	MaxVersions:               pulumi.String("string"),
    	Description:               pulumi.String("string"),
    	PasswordLength:            pulumi.String("string"),
    	Name:                      pulumi.String("string"),
    	RotatedSecretHashiVaultId: pulumi.String("string"),
    	AutoRotate:                pulumi.String("string"),
    	RotationHour:              pulumi.Float64(0),
    	RotationInterval:          pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DeleteProtection: pulumi.String("string"),
    })
    
    resource "akeyless_rotatedsecrethashivault" "rotatedSecretHashiVaultResource" {
      target_name        = "string"
      output_rules       = ["string"]
      rotation_event_ins = ["string"]
      input_rules        = ["string"]
      item_custom_fields = {
        "string" = "string"
      }
      key                           = "string"
      max_versions                  = "string"
      description                   = "string"
      password_length               = "string"
      name                          = "string"
      rotated_secret_hashi_vault_id = "string"
      auto_rotate                   = "string"
      rotation_hour                 = 0
      rotation_interval             = "string"
      tags                          = ["string"]
      delete_protection             = "string"
    }
    
    var rotatedSecretHashiVaultResource = new RotatedSecretHashiVault("rotatedSecretHashiVaultResource", RotatedSecretHashiVaultArgs.builder()
        .targetName("string")
        .outputRules("string")
        .rotationEventIns("string")
        .inputRules("string")
        .itemCustomFields(Map.of("string", "string"))
        .key("string")
        .maxVersions("string")
        .description("string")
        .passwordLength("string")
        .name("string")
        .rotatedSecretHashiVaultId("string")
        .autoRotate("string")
        .rotationHour(0.0)
        .rotationInterval("string")
        .tags("string")
        .deleteProtection("string")
        .build());
    
    rotated_secret_hashi_vault_resource = akeyless.RotatedSecretHashiVault("rotatedSecretHashiVaultResource",
        target_name="string",
        output_rules=["string"],
        rotation_event_ins=["string"],
        input_rules=["string"],
        item_custom_fields={
            "string": "string",
        },
        key="string",
        max_versions="string",
        description="string",
        password_length="string",
        name="string",
        rotated_secret_hashi_vault_id="string",
        auto_rotate="string",
        rotation_hour=float(0),
        rotation_interval="string",
        tags=["string"],
        delete_protection="string")
    
    const rotatedSecretHashiVaultResource = new akeyless.RotatedSecretHashiVault("rotatedSecretHashiVaultResource", {
        targetName: "string",
        outputRules: ["string"],
        rotationEventIns: ["string"],
        inputRules: ["string"],
        itemCustomFields: {
            string: "string",
        },
        key: "string",
        maxVersions: "string",
        description: "string",
        passwordLength: "string",
        name: "string",
        rotatedSecretHashiVaultId: "string",
        autoRotate: "string",
        rotationHour: 0,
        rotationInterval: "string",
        tags: ["string"],
        deleteProtection: "string",
    });
    
    type: akeyless:RotatedSecretHashiVault
    properties:
        autoRotate: string
        deleteProtection: string
        description: string
        inputRules:
            - string
        itemCustomFields:
            string: string
        key: string
        maxVersions: string
        name: string
        outputRules:
            - string
        passwordLength: string
        rotatedSecretHashiVaultId: string
        rotationEventIns:
            - string
        rotationHour: 0
        rotationInterval: string
        tags:
            - string
        targetName: string
    

    RotatedSecretHashiVault Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RotatedSecretHashiVault resource accepts the following input properties:

    TargetName string
    Target name
    AutoRotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    Description string
    Description of the object
    InputRules List<string>
    Password input rule definitions
    ItemCustomFields Dictionary<string, string>
    Additional custom fields to associate with the item
    Key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Rotated secret name
    OutputRules List<string>
    Password output rule definitions
    PasswordLength string
    The length of the password to be generated
    RotatedSecretHashiVaultId string
    The ID of this resource.
    RotationEventIns List<string>
    How many days before the rotation of the item would you like to be notified
    RotationHour double
    The Hour of the rotation in UTC
    RotationInterval string
    The number of days to wait between every automatic key rotation (1-365)
    Tags List<string>
    Add tags attached to this object
    TargetName string
    Target name
    AutoRotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    Description string
    Description of the object
    InputRules []string
    Password input rule definitions
    ItemCustomFields map[string]string
    Additional custom fields to associate with the item
    Key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Rotated secret name
    OutputRules []string
    Password output rule definitions
    PasswordLength string
    The length of the password to be generated
    RotatedSecretHashiVaultId string
    The ID of this resource.
    RotationEventIns []string
    How many days before the rotation of the item would you like to be notified
    RotationHour float64
    The Hour of the rotation in UTC
    RotationInterval string
    The number of days to wait between every automatic key rotation (1-365)
    Tags []string
    Add tags attached to this object
    target_name string
    Target name
    auto_rotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    delete_protection string
    Protection from accidental deletion of this object [true/false]
    description string
    Description of the object
    input_rules list(string)
    Password input rule definitions
    item_custom_fields map(string)
    Additional custom fields to associate with the item
    key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    max_versions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Rotated secret name
    output_rules list(string)
    Password output rule definitions
    password_length string
    The length of the password to be generated
    rotated_secret_hashi_vault_id string
    The ID of this resource.
    rotation_event_ins list(string)
    How many days before the rotation of the item would you like to be notified
    rotation_hour number
    The Hour of the rotation in UTC
    rotation_interval string
    The number of days to wait between every automatic key rotation (1-365)
    tags list(string)
    Add tags attached to this object
    targetName String
    Target name
    autoRotate String
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    description String
    Description of the object
    inputRules List<String>
    Password input rule definitions
    itemCustomFields Map<String,String>
    Additional custom fields to associate with the item
    key String
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Rotated secret name
    outputRules List<String>
    Password output rule definitions
    passwordLength String
    The length of the password to be generated
    rotatedSecretHashiVaultId String
    The ID of this resource.
    rotationEventIns List<String>
    How many days before the rotation of the item would you like to be notified
    rotationHour Double
    The Hour of the rotation in UTC
    rotationInterval String
    The number of days to wait between every automatic key rotation (1-365)
    tags List<String>
    Add tags attached to this object
    targetName string
    Target name
    autoRotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    deleteProtection string
    Protection from accidental deletion of this object [true/false]
    description string
    Description of the object
    inputRules string[]
    Password input rule definitions
    itemCustomFields {[key: string]: string}
    Additional custom fields to associate with the item
    key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    maxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Rotated secret name
    outputRules string[]
    Password output rule definitions
    passwordLength string
    The length of the password to be generated
    rotatedSecretHashiVaultId string
    The ID of this resource.
    rotationEventIns string[]
    How many days before the rotation of the item would you like to be notified
    rotationHour number
    The Hour of the rotation in UTC
    rotationInterval string
    The number of days to wait between every automatic key rotation (1-365)
    tags string[]
    Add tags attached to this object
    target_name str
    Target name
    auto_rotate str
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    delete_protection str
    Protection from accidental deletion of this object [true/false]
    description str
    Description of the object
    input_rules Sequence[str]
    Password input rule definitions
    item_custom_fields Mapping[str, str]
    Additional custom fields to associate with the item
    key str
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    max_versions str
    Set the maximum number of versions, limited by the account settings defaults.
    name str
    Rotated secret name
    output_rules Sequence[str]
    Password output rule definitions
    password_length str
    The length of the password to be generated
    rotated_secret_hashi_vault_id str
    The ID of this resource.
    rotation_event_ins Sequence[str]
    How many days before the rotation of the item would you like to be notified
    rotation_hour float
    The Hour of the rotation in UTC
    rotation_interval str
    The number of days to wait between every automatic key rotation (1-365)
    tags Sequence[str]
    Add tags attached to this object
    targetName String
    Target name
    autoRotate String
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    description String
    Description of the object
    inputRules List<String>
    Password input rule definitions
    itemCustomFields Map<String>
    Additional custom fields to associate with the item
    key String
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Rotated secret name
    outputRules List<String>
    Password output rule definitions
    passwordLength String
    The length of the password to be generated
    rotatedSecretHashiVaultId String
    The ID of this resource.
    rotationEventIns List<String>
    How many days before the rotation of the item would you like to be notified
    rotationHour Number
    The Hour of the rotation in UTC
    rotationInterval String
    The number of days to wait between every automatic key rotation (1-365)
    tags List<String>
    Add tags attached to this object

    Outputs

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

    Get an existing RotatedSecretHashiVault 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?: RotatedSecretHashiVaultState, opts?: CustomResourceOptions): RotatedSecretHashiVault
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_rotate: Optional[str] = None,
            delete_protection: Optional[str] = None,
            description: Optional[str] = None,
            input_rules: Optional[Sequence[str]] = None,
            item_custom_fields: Optional[Mapping[str, str]] = None,
            key: Optional[str] = None,
            max_versions: Optional[str] = None,
            name: Optional[str] = None,
            output_rules: Optional[Sequence[str]] = None,
            password_length: Optional[str] = None,
            rotated_secret_hashi_vault_id: Optional[str] = None,
            rotation_event_ins: Optional[Sequence[str]] = None,
            rotation_hour: Optional[float] = None,
            rotation_interval: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            target_name: Optional[str] = None) -> RotatedSecretHashiVault
    func GetRotatedSecretHashiVault(ctx *Context, name string, id IDInput, state *RotatedSecretHashiVaultState, opts ...ResourceOption) (*RotatedSecretHashiVault, error)
    public static RotatedSecretHashiVault Get(string name, Input<string> id, RotatedSecretHashiVaultState? state, CustomResourceOptions? opts = null)
    public static RotatedSecretHashiVault get(String name, Output<String> id, RotatedSecretHashiVaultState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:RotatedSecretHashiVault    get:      id: ${id}
    import {
      to = akeyless_rotatedsecrethashivault.example
      id = "${id}"
    }
    
    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:
    AutoRotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    Description string
    Description of the object
    InputRules List<string>
    Password input rule definitions
    ItemCustomFields Dictionary<string, string>
    Additional custom fields to associate with the item
    Key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Rotated secret name
    OutputRules List<string>
    Password output rule definitions
    PasswordLength string
    The length of the password to be generated
    RotatedSecretHashiVaultId string
    The ID of this resource.
    RotationEventIns List<string>
    How many days before the rotation of the item would you like to be notified
    RotationHour double
    The Hour of the rotation in UTC
    RotationInterval string
    The number of days to wait between every automatic key rotation (1-365)
    Tags List<string>
    Add tags attached to this object
    TargetName string
    Target name
    AutoRotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    Description string
    Description of the object
    InputRules []string
    Password input rule definitions
    ItemCustomFields map[string]string
    Additional custom fields to associate with the item
    Key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Rotated secret name
    OutputRules []string
    Password output rule definitions
    PasswordLength string
    The length of the password to be generated
    RotatedSecretHashiVaultId string
    The ID of this resource.
    RotationEventIns []string
    How many days before the rotation of the item would you like to be notified
    RotationHour float64
    The Hour of the rotation in UTC
    RotationInterval string
    The number of days to wait between every automatic key rotation (1-365)
    Tags []string
    Add tags attached to this object
    TargetName string
    Target name
    auto_rotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    delete_protection string
    Protection from accidental deletion of this object [true/false]
    description string
    Description of the object
    input_rules list(string)
    Password input rule definitions
    item_custom_fields map(string)
    Additional custom fields to associate with the item
    key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    max_versions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Rotated secret name
    output_rules list(string)
    Password output rule definitions
    password_length string
    The length of the password to be generated
    rotated_secret_hashi_vault_id string
    The ID of this resource.
    rotation_event_ins list(string)
    How many days before the rotation of the item would you like to be notified
    rotation_hour number
    The Hour of the rotation in UTC
    rotation_interval string
    The number of days to wait between every automatic key rotation (1-365)
    tags list(string)
    Add tags attached to this object
    target_name string
    Target name
    autoRotate String
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    description String
    Description of the object
    inputRules List<String>
    Password input rule definitions
    itemCustomFields Map<String,String>
    Additional custom fields to associate with the item
    key String
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Rotated secret name
    outputRules List<String>
    Password output rule definitions
    passwordLength String
    The length of the password to be generated
    rotatedSecretHashiVaultId String
    The ID of this resource.
    rotationEventIns List<String>
    How many days before the rotation of the item would you like to be notified
    rotationHour Double
    The Hour of the rotation in UTC
    rotationInterval String
    The number of days to wait between every automatic key rotation (1-365)
    tags List<String>
    Add tags attached to this object
    targetName String
    Target name
    autoRotate string
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    deleteProtection string
    Protection from accidental deletion of this object [true/false]
    description string
    Description of the object
    inputRules string[]
    Password input rule definitions
    itemCustomFields {[key: string]: string}
    Additional custom fields to associate with the item
    key string
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    maxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Rotated secret name
    outputRules string[]
    Password output rule definitions
    passwordLength string
    The length of the password to be generated
    rotatedSecretHashiVaultId string
    The ID of this resource.
    rotationEventIns string[]
    How many days before the rotation of the item would you like to be notified
    rotationHour number
    The Hour of the rotation in UTC
    rotationInterval string
    The number of days to wait between every automatic key rotation (1-365)
    tags string[]
    Add tags attached to this object
    targetName string
    Target name
    auto_rotate str
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    delete_protection str
    Protection from accidental deletion of this object [true/false]
    description str
    Description of the object
    input_rules Sequence[str]
    Password input rule definitions
    item_custom_fields Mapping[str, str]
    Additional custom fields to associate with the item
    key str
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    max_versions str
    Set the maximum number of versions, limited by the account settings defaults.
    name str
    Rotated secret name
    output_rules Sequence[str]
    Password output rule definitions
    password_length str
    The length of the password to be generated
    rotated_secret_hashi_vault_id str
    The ID of this resource.
    rotation_event_ins Sequence[str]
    How many days before the rotation of the item would you like to be notified
    rotation_hour float
    The Hour of the rotation in UTC
    rotation_interval str
    The number of days to wait between every automatic key rotation (1-365)
    tags Sequence[str]
    Add tags attached to this object
    target_name str
    Target name
    autoRotate String
    Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false]
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    description String
    Description of the object
    inputRules List<String>
    Password input rule definitions
    itemCustomFields Map<String>
    Additional custom fields to associate with the item
    key String
    The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Rotated secret name
    outputRules List<String>
    Password output rule definitions
    passwordLength String
    The length of the password to be generated
    rotatedSecretHashiVaultId String
    The ID of this resource.
    rotationEventIns List<String>
    How many days before the rotation of the item would you like to be notified
    rotationHour Number
    The Hour of the rotation in UTC
    rotationInterval String
    The number of days to wait between every automatic key rotation (1-365)
    tags List<String>
    Add tags attached to this object
    targetName String
    Target name

    Package Details

    Repository
    akeyless akeyless-community/terraform-provider-akeyless
    License
    Notes
    This Pulumi package is based on the akeyless Terraform Provider.
    Viewing docs for akeyless 2.0.2
    published on Thursday, Jun 18, 2026 by akeyless-community

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial