1. Packages
  2. Akeyless Provider
  3. API Docs
  4. DfcKey
akeyless 1.9.0 published on Monday, Apr 14, 2025 by akeyless-community

akeyless.DfcKey

Explore with Pulumi AI

DFC Key resource

Create DfcKey Resource

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

Constructor syntax

new DfcKey(name: string, args: DfcKeyArgs, opts?: CustomResourceOptions);
@overload
def DfcKey(resource_name: str,
           args: DfcKeyArgs,
           opts: Optional[ResourceOptions] = None)

@overload
def DfcKey(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           alg: Optional[str] = None,
           auto_rotate: Optional[str] = None,
           cert_data_base64: Optional[str] = None,
           certificate_common_name: Optional[str] = None,
           certificate_country: Optional[str] = None,
           certificate_format: Optional[str] = None,
           certificate_locality: Optional[str] = None,
           certificate_organization: Optional[str] = None,
           certificate_province: Optional[str] = None,
           certificate_ttl: Optional[float] = None,
           conf_file_data: Optional[str] = None,
           customer_frg_id: Optional[str] = None,
           delete_protection: Optional[bool] = None,
           description: Optional[str] = None,
           dfc_key_id: Optional[str] = None,
           expiration_event_ins: Optional[Sequence[str]] = None,
           generate_self_signed_certificate: Optional[bool] = None,
           name: Optional[str] = None,
           rotation_event_ins: Optional[Sequence[str]] = None,
           rotation_interval: Optional[str] = None,
           split_level: Optional[float] = None,
           tags: Optional[Sequence[str]] = None)
func NewDfcKey(ctx *Context, name string, args DfcKeyArgs, opts ...ResourceOption) (*DfcKey, error)
public DfcKey(string name, DfcKeyArgs args, CustomResourceOptions? opts = null)
public DfcKey(String name, DfcKeyArgs args)
public DfcKey(String name, DfcKeyArgs args, CustomResourceOptions options)
type: akeyless:DfcKey
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DfcKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DfcKeyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DfcKeyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DfcKeyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DfcKeyArgs
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 dfcKeyResource = new Akeyless.DfcKey("dfcKeyResource", new()
{
    Alg = "string",
    AutoRotate = "string",
    CertDataBase64 = "string",
    CertificateCommonName = "string",
    CertificateCountry = "string",
    CertificateFormat = "string",
    CertificateLocality = "string",
    CertificateOrganization = "string",
    CertificateProvince = "string",
    CertificateTtl = 0,
    ConfFileData = "string",
    CustomerFrgId = "string",
    DeleteProtection = false,
    Description = "string",
    DfcKeyId = "string",
    ExpirationEventIns = new[]
    {
        "string",
    },
    GenerateSelfSignedCertificate = false,
    Name = "string",
    RotationEventIns = new[]
    {
        "string",
    },
    RotationInterval = "string",
    SplitLevel = 0,
    Tags = new[]
    {
        "string",
    },
});
Copy
example, err := akeyless.NewDfcKey(ctx, "dfcKeyResource", &akeyless.DfcKeyArgs{
	Alg:                     pulumi.String("string"),
	AutoRotate:              pulumi.String("string"),
	CertDataBase64:          pulumi.String("string"),
	CertificateCommonName:   pulumi.String("string"),
	CertificateCountry:      pulumi.String("string"),
	CertificateFormat:       pulumi.String("string"),
	CertificateLocality:     pulumi.String("string"),
	CertificateOrganization: pulumi.String("string"),
	CertificateProvince:     pulumi.String("string"),
	CertificateTtl:          pulumi.Float64(0),
	ConfFileData:            pulumi.String("string"),
	CustomerFrgId:           pulumi.String("string"),
	DeleteProtection:        pulumi.Bool(false),
	Description:             pulumi.String("string"),
	DfcKeyId:                pulumi.String("string"),
	ExpirationEventIns: pulumi.StringArray{
		pulumi.String("string"),
	},
	GenerateSelfSignedCertificate: pulumi.Bool(false),
	Name:                          pulumi.String("string"),
	RotationEventIns: pulumi.StringArray{
		pulumi.String("string"),
	},
	RotationInterval: pulumi.String("string"),
	SplitLevel:       pulumi.Float64(0),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var dfcKeyResource = new DfcKey("dfcKeyResource", DfcKeyArgs.builder()
    .alg("string")
    .autoRotate("string")
    .certDataBase64("string")
    .certificateCommonName("string")
    .certificateCountry("string")
    .certificateFormat("string")
    .certificateLocality("string")
    .certificateOrganization("string")
    .certificateProvince("string")
    .certificateTtl(0)
    .confFileData("string")
    .customerFrgId("string")
    .deleteProtection(false)
    .description("string")
    .dfcKeyId("string")
    .expirationEventIns("string")
    .generateSelfSignedCertificate(false)
    .name("string")
    .rotationEventIns("string")
    .rotationInterval("string")
    .splitLevel(0)
    .tags("string")
    .build());
Copy
dfc_key_resource = akeyless.DfcKey("dfcKeyResource",
    alg="string",
    auto_rotate="string",
    cert_data_base64="string",
    certificate_common_name="string",
    certificate_country="string",
    certificate_format="string",
    certificate_locality="string",
    certificate_organization="string",
    certificate_province="string",
    certificate_ttl=0,
    conf_file_data="string",
    customer_frg_id="string",
    delete_protection=False,
    description="string",
    dfc_key_id="string",
    expiration_event_ins=["string"],
    generate_self_signed_certificate=False,
    name="string",
    rotation_event_ins=["string"],
    rotation_interval="string",
    split_level=0,
    tags=["string"])
Copy
const dfcKeyResource = new akeyless.DfcKey("dfcKeyResource", {
    alg: "string",
    autoRotate: "string",
    certDataBase64: "string",
    certificateCommonName: "string",
    certificateCountry: "string",
    certificateFormat: "string",
    certificateLocality: "string",
    certificateOrganization: "string",
    certificateProvince: "string",
    certificateTtl: 0,
    confFileData: "string",
    customerFrgId: "string",
    deleteProtection: false,
    description: "string",
    dfcKeyId: "string",
    expirationEventIns: ["string"],
    generateSelfSignedCertificate: false,
    name: "string",
    rotationEventIns: ["string"],
    rotationInterval: "string",
    splitLevel: 0,
    tags: ["string"],
});
Copy
type: akeyless:DfcKey
properties:
    alg: string
    autoRotate: string
    certDataBase64: string
    certificateCommonName: string
    certificateCountry: string
    certificateFormat: string
    certificateLocality: string
    certificateOrganization: string
    certificateProvince: string
    certificateTtl: 0
    confFileData: string
    customerFrgId: string
    deleteProtection: false
    description: string
    dfcKeyId: string
    expirationEventIns:
        - string
    generateSelfSignedCertificate: false
    name: string
    rotationEventIns:
        - string
    rotationInterval: string
    splitLevel: 0
    tags:
        - string
Copy

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

Alg This property is required. string
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
AutoRotate string
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
CertDataBase64 string
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
CertificateCommonName string
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateCountry string
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateFormat string
The format of the returned certificate [pem/der]
CertificateLocality string
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateOrganization string
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateProvince string
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateTtl double
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
ConfFileData string
The csr config data in base64 encoding
CustomerFrgId string
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
DeleteProtection bool
Protection from accidental deletion of this item, [true/false]
Description string
Description of the object
DfcKeyId string
The ID of this resource.
ExpirationEventIns List<string>
How many days before the expiration of the certificate would you like to be notified.
GenerateSelfSignedCertificate bool
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
Name string
DFCKey name
RotationEventIns List<string>
How many days before the rotation of the item would you like to be notified.
RotationInterval string
The number of days to wait between every automatic rotation (7-365)
SplitLevel double
The number of fragments that the item will be split into (not includes customer fragment)
Tags List<string>
List of the tags attached to this DFC key
Alg This property is required. string
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
AutoRotate string
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
CertDataBase64 string
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
CertificateCommonName string
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateCountry string
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateFormat string
The format of the returned certificate [pem/der]
CertificateLocality string
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateOrganization string
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateProvince string
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateTtl float64
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
ConfFileData string
The csr config data in base64 encoding
CustomerFrgId string
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
DeleteProtection bool
Protection from accidental deletion of this item, [true/false]
Description string
Description of the object
DfcKeyId string
The ID of this resource.
ExpirationEventIns []string
How many days before the expiration of the certificate would you like to be notified.
GenerateSelfSignedCertificate bool
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
Name string
DFCKey name
RotationEventIns []string
How many days before the rotation of the item would you like to be notified.
RotationInterval string
The number of days to wait between every automatic rotation (7-365)
SplitLevel float64
The number of fragments that the item will be split into (not includes customer fragment)
Tags []string
List of the tags attached to this DFC key
alg This property is required. String
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
autoRotate String
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
certDataBase64 String
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificateCommonName String
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateCountry String
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateFormat String
The format of the returned certificate [pem/der]
certificateLocality String
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateOrganization String
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateProvince String
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateTtl Double
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
confFileData String
The csr config data in base64 encoding
customerFrgId String
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
deleteProtection Boolean
Protection from accidental deletion of this item, [true/false]
description String
Description of the object
dfcKeyId String
The ID of this resource.
expirationEventIns List<String>
How many days before the expiration of the certificate would you like to be notified.
generateSelfSignedCertificate Boolean
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name String
DFCKey name
rotationEventIns List<String>
How many days before the rotation of the item would you like to be notified.
rotationInterval String
The number of days to wait between every automatic rotation (7-365)
splitLevel Double
The number of fragments that the item will be split into (not includes customer fragment)
tags List<String>
List of the tags attached to this DFC key
alg This property is required. string
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
autoRotate string
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
certDataBase64 string
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificateCommonName string
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateCountry string
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateFormat string
The format of the returned certificate [pem/der]
certificateLocality string
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateOrganization string
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateProvince string
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateTtl number
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
confFileData string
The csr config data in base64 encoding
customerFrgId string
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
deleteProtection boolean
Protection from accidental deletion of this item, [true/false]
description string
Description of the object
dfcKeyId string
The ID of this resource.
expirationEventIns string[]
How many days before the expiration of the certificate would you like to be notified.
generateSelfSignedCertificate boolean
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name string
DFCKey name
rotationEventIns string[]
How many days before the rotation of the item would you like to be notified.
rotationInterval string
The number of days to wait between every automatic rotation (7-365)
splitLevel number
The number of fragments that the item will be split into (not includes customer fragment)
tags string[]
List of the tags attached to this DFC key
alg This property is required. str
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
auto_rotate str
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
cert_data_base64 str
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificate_common_name str
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_country str
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_format str
The format of the returned certificate [pem/der]
certificate_locality str
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_organization str
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_province str
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_ttl float
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
conf_file_data str
The csr config data in base64 encoding
customer_frg_id str
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
delete_protection bool
Protection from accidental deletion of this item, [true/false]
description str
Description of the object
dfc_key_id str
The ID of this resource.
expiration_event_ins Sequence[str]
How many days before the expiration of the certificate would you like to be notified.
generate_self_signed_certificate bool
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name str
DFCKey name
rotation_event_ins Sequence[str]
How many days before the rotation of the item would you like to be notified.
rotation_interval str
The number of days to wait between every automatic rotation (7-365)
split_level float
The number of fragments that the item will be split into (not includes customer fragment)
tags Sequence[str]
List of the tags attached to this DFC key
alg This property is required. String
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
autoRotate String
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
certDataBase64 String
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificateCommonName String
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateCountry String
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateFormat String
The format of the returned certificate [pem/der]
certificateLocality String
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateOrganization String
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateProvince String
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateTtl Number
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
confFileData String
The csr config data in base64 encoding
customerFrgId String
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
deleteProtection Boolean
Protection from accidental deletion of this item, [true/false]
description String
Description of the object
dfcKeyId String
The ID of this resource.
expirationEventIns List<String>
How many days before the expiration of the certificate would you like to be notified.
generateSelfSignedCertificate Boolean
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name String
DFCKey name
rotationEventIns List<String>
How many days before the rotation of the item would you like to be notified.
rotationInterval String
The number of days to wait between every automatic rotation (7-365)
splitLevel Number
The number of fragments that the item will be split into (not includes customer fragment)
tags List<String>
List of the tags attached to this DFC key

Outputs

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

Get an existing DfcKey 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?: DfcKeyState, opts?: CustomResourceOptions): DfcKey
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        alg: Optional[str] = None,
        auto_rotate: Optional[str] = None,
        cert_data_base64: Optional[str] = None,
        certificate_common_name: Optional[str] = None,
        certificate_country: Optional[str] = None,
        certificate_format: Optional[str] = None,
        certificate_locality: Optional[str] = None,
        certificate_organization: Optional[str] = None,
        certificate_province: Optional[str] = None,
        certificate_ttl: Optional[float] = None,
        conf_file_data: Optional[str] = None,
        customer_frg_id: Optional[str] = None,
        delete_protection: Optional[bool] = None,
        description: Optional[str] = None,
        dfc_key_id: Optional[str] = None,
        expiration_event_ins: Optional[Sequence[str]] = None,
        generate_self_signed_certificate: Optional[bool] = None,
        name: Optional[str] = None,
        rotation_event_ins: Optional[Sequence[str]] = None,
        rotation_interval: Optional[str] = None,
        split_level: Optional[float] = None,
        tags: Optional[Sequence[str]] = None) -> DfcKey
func GetDfcKey(ctx *Context, name string, id IDInput, state *DfcKeyState, opts ...ResourceOption) (*DfcKey, error)
public static DfcKey Get(string name, Input<string> id, DfcKeyState? state, CustomResourceOptions? opts = null)
public static DfcKey get(String name, Output<String> id, DfcKeyState state, CustomResourceOptions options)
resources:  _:    type: akeyless:DfcKey    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Alg string
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
AutoRotate string
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
CertDataBase64 string
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
CertificateCommonName string
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateCountry string
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateFormat string
The format of the returned certificate [pem/der]
CertificateLocality string
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateOrganization string
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateProvince string
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateTtl double
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
ConfFileData string
The csr config data in base64 encoding
CustomerFrgId string
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
DeleteProtection bool
Protection from accidental deletion of this item, [true/false]
Description string
Description of the object
DfcKeyId string
The ID of this resource.
ExpirationEventIns List<string>
How many days before the expiration of the certificate would you like to be notified.
GenerateSelfSignedCertificate bool
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
Name string
DFCKey name
RotationEventIns List<string>
How many days before the rotation of the item would you like to be notified.
RotationInterval string
The number of days to wait between every automatic rotation (7-365)
SplitLevel double
The number of fragments that the item will be split into (not includes customer fragment)
Tags List<string>
List of the tags attached to this DFC key
Alg string
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
AutoRotate string
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
CertDataBase64 string
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
CertificateCommonName string
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateCountry string
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateFormat string
The format of the returned certificate [pem/der]
CertificateLocality string
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateOrganization string
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateProvince string
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
CertificateTtl float64
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
ConfFileData string
The csr config data in base64 encoding
CustomerFrgId string
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
DeleteProtection bool
Protection from accidental deletion of this item, [true/false]
Description string
Description of the object
DfcKeyId string
The ID of this resource.
ExpirationEventIns []string
How many days before the expiration of the certificate would you like to be notified.
GenerateSelfSignedCertificate bool
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
Name string
DFCKey name
RotationEventIns []string
How many days before the rotation of the item would you like to be notified.
RotationInterval string
The number of days to wait between every automatic rotation (7-365)
SplitLevel float64
The number of fragments that the item will be split into (not includes customer fragment)
Tags []string
List of the tags attached to this DFC key
alg String
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
autoRotate String
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
certDataBase64 String
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificateCommonName String
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateCountry String
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateFormat String
The format of the returned certificate [pem/der]
certificateLocality String
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateOrganization String
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateProvince String
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateTtl Double
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
confFileData String
The csr config data in base64 encoding
customerFrgId String
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
deleteProtection Boolean
Protection from accidental deletion of this item, [true/false]
description String
Description of the object
dfcKeyId String
The ID of this resource.
expirationEventIns List<String>
How many days before the expiration of the certificate would you like to be notified.
generateSelfSignedCertificate Boolean
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name String
DFCKey name
rotationEventIns List<String>
How many days before the rotation of the item would you like to be notified.
rotationInterval String
The number of days to wait between every automatic rotation (7-365)
splitLevel Double
The number of fragments that the item will be split into (not includes customer fragment)
tags List<String>
List of the tags attached to this DFC key
alg string
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
autoRotate string
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
certDataBase64 string
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificateCommonName string
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateCountry string
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateFormat string
The format of the returned certificate [pem/der]
certificateLocality string
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateOrganization string
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateProvince string
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateTtl number
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
confFileData string
The csr config data in base64 encoding
customerFrgId string
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
deleteProtection boolean
Protection from accidental deletion of this item, [true/false]
description string
Description of the object
dfcKeyId string
The ID of this resource.
expirationEventIns string[]
How many days before the expiration of the certificate would you like to be notified.
generateSelfSignedCertificate boolean
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name string
DFCKey name
rotationEventIns string[]
How many days before the rotation of the item would you like to be notified.
rotationInterval string
The number of days to wait between every automatic rotation (7-365)
splitLevel number
The number of fragments that the item will be split into (not includes customer fragment)
tags string[]
List of the tags attached to this DFC key
alg str
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
auto_rotate str
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
cert_data_base64 str
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificate_common_name str
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_country str
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_format str
The format of the returned certificate [pem/der]
certificate_locality str
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_organization str
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_province str
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificate_ttl float
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
conf_file_data str
The csr config data in base64 encoding
customer_frg_id str
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
delete_protection bool
Protection from accidental deletion of this item, [true/false]
description str
Description of the object
dfc_key_id str
The ID of this resource.
expiration_event_ins Sequence[str]
How many days before the expiration of the certificate would you like to be notified.
generate_self_signed_certificate bool
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name str
DFCKey name
rotation_event_ins Sequence[str]
How many days before the rotation of the item would you like to be notified.
rotation_interval str
The number of days to wait between every automatic rotation (7-365)
split_level float
The number of fragments that the item will be split into (not includes customer fragment)
tags Sequence[str]
List of the tags attached to this DFC key
alg String
DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096]
autoRotate String
Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false]
certDataBase64 String
PEM Certificate in a Base64 format. Used for updating RSA keys' certificates
certificateCommonName String
Common name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateCountry String
Country name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateFormat String
The format of the returned certificate [pem/der]
certificateLocality String
Locality for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateOrganization String
Organization name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateProvince String
Province name for the generated certificate. Relevant only for generate-self-signed-certificate.
certificateTtl Number
TTL in days for the generated certificate. Required only for generate-self-signed-certificate.
confFileData String
The csr config data in base64 encoding
customerFrgId String
The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment)
deleteProtection Boolean
Protection from accidental deletion of this item, [true/false]
description String
Description of the object
dfcKeyId String
The ID of this resource.
expirationEventIns List<String>
How many days before the expiration of the certificate would you like to be notified.
generateSelfSignedCertificate Boolean
Whether to generate a self signed certificate with the key. If set, certificate-ttl must be provided.
name String
DFCKey name
rotationEventIns List<String>
How many days before the rotation of the item would you like to be notified.
rotationInterval String
The number of days to wait between every automatic rotation (7-365)
splitLevel Number
The number of fragments that the item will be split into (not includes customer fragment)
tags List<String>
List of the tags attached to this DFC key

Package Details

Repository
akeyless akeyless-community/terraform-provider-akeyless
License
Notes
This Pulumi package is based on the akeyless Terraform Provider.