avi.Pkiprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Pkiprofile” sidebar_current: “docs-avi-resource-pkiprofile” description: |- Creates and manages Avi PKIProfile.
avi.Pkiprofile
The PKIProfile resource allows the creation and management of Avi PKIProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Pkiprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Pkiprofile("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewPkiprofile(ctx, "foo", &avi.PkiprofileArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Pkiprofile("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Pkiprofile;
import com.pulumi.avi.PkiprofileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Pkiprofile("foo", PkiprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Pkiprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Pkiprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pkiprofile(name: string, args?: PkiprofileArgs, opts?: CustomResourceOptions);
@overload
def Pkiprofile(resource_name: str,
args: Optional[PkiprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Pkiprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_pki_errors: Optional[Sequence[str]] = None,
ca_certs: Optional[Sequence[PkiprofileCaCertArgs]] = None,
configpb_attributes: Optional[Sequence[PkiprofileConfigpbAttributeArgs]] = None,
created_by: Optional[str] = None,
crl_check: Optional[str] = None,
crl_file_refs: Optional[Sequence[str]] = None,
ignore_peer_chain: Optional[str] = None,
is_federated: Optional[str] = None,
markers: Optional[Sequence[PkiprofileMarkerArgs]] = None,
name: Optional[str] = None,
pkiprofile_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None,
validate_only_leaf_crl: Optional[str] = None)
func NewPkiprofile(ctx *Context, name string, args *PkiprofileArgs, opts ...ResourceOption) (*Pkiprofile, error)
public Pkiprofile(string name, PkiprofileArgs? args = null, CustomResourceOptions? opts = null)
public Pkiprofile(String name, PkiprofileArgs args)
public Pkiprofile(String name, PkiprofileArgs args, CustomResourceOptions options)
type: avi:Pkiprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PkiprofileArgs
- 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 PkiprofileArgs
- 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 PkiprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PkiprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PkiprofileArgs
- 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 pkiprofileResource = new Avi.Pkiprofile("pkiprofileResource", new()
{
AllowPkiErrors = new[]
{
"string",
},
CaCerts = new[]
{
new Avi.Inputs.PkiprofileCaCertArgs
{
Certificate = "string",
CertificateSigningRequest = "string",
ChainVerified = "string",
DaysUntilExpire = "string",
ExpiryStatus = "string",
Fingerprint = "string",
Issuers = new[]
{
new Avi.Inputs.PkiprofileCaCertIssuerArgs
{
CommonName = "string",
Country = "string",
DistinguishedName = "string",
EmailAddress = "string",
Locality = "string",
Organization = "string",
OrganizationUnit = "string",
State = "string",
},
},
KeyParams = new[]
{
new Avi.Inputs.PkiprofileCaCertKeyParamArgs
{
Algorithm = "string",
EcParams = new[]
{
new Avi.Inputs.PkiprofileCaCertKeyParamEcParamArgs
{
Curve = "string",
},
},
RsaParams = new[]
{
new Avi.Inputs.PkiprofileCaCertKeyParamRsaParamArgs
{
Exponent = "string",
KeySize = "string",
},
},
},
},
NotAfter = "string",
NotBefore = "string",
PublicKey = "string",
SelfSigned = "string",
SerialNumber = "string",
Signature = "string",
SignatureAlgorithm = "string",
SubjectAltNames = new[]
{
"string",
},
Subjects = new[]
{
new Avi.Inputs.PkiprofileCaCertSubjectArgs
{
CommonName = "string",
Country = "string",
DistinguishedName = "string",
EmailAddress = "string",
Locality = "string",
Organization = "string",
OrganizationUnit = "string",
State = "string",
},
},
Text = "string",
Version = "string",
},
},
ConfigpbAttributes = new[]
{
new Avi.Inputs.PkiprofileConfigpbAttributeArgs
{
Version = "string",
},
},
CreatedBy = "string",
CrlCheck = "string",
CrlFileRefs = new[]
{
"string",
},
IgnorePeerChain = "string",
IsFederated = "string",
Markers = new[]
{
new Avi.Inputs.PkiprofileMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
PkiprofileId = "string",
TenantRef = "string",
Uuid = "string",
ValidateOnlyLeafCrl = "string",
});
example, err := avi.NewPkiprofile(ctx, "pkiprofileResource", &avi.PkiprofileArgs{
AllowPkiErrors: pulumi.StringArray{
pulumi.String("string"),
},
CaCerts: avi.PkiprofileCaCertArray{
&avi.PkiprofileCaCertArgs{
Certificate: pulumi.String("string"),
CertificateSigningRequest: pulumi.String("string"),
ChainVerified: pulumi.String("string"),
DaysUntilExpire: pulumi.String("string"),
ExpiryStatus: pulumi.String("string"),
Fingerprint: pulumi.String("string"),
Issuers: avi.PkiprofileCaCertIssuerArray{
&avi.PkiprofileCaCertIssuerArgs{
CommonName: pulumi.String("string"),
Country: pulumi.String("string"),
DistinguishedName: pulumi.String("string"),
EmailAddress: pulumi.String("string"),
Locality: pulumi.String("string"),
Organization: pulumi.String("string"),
OrganizationUnit: pulumi.String("string"),
State: pulumi.String("string"),
},
},
KeyParams: avi.PkiprofileCaCertKeyParamArray{
&avi.PkiprofileCaCertKeyParamArgs{
Algorithm: pulumi.String("string"),
EcParams: avi.PkiprofileCaCertKeyParamEcParamArray{
&avi.PkiprofileCaCertKeyParamEcParamArgs{
Curve: pulumi.String("string"),
},
},
RsaParams: avi.PkiprofileCaCertKeyParamRsaParamArray{
&avi.PkiprofileCaCertKeyParamRsaParamArgs{
Exponent: pulumi.String("string"),
KeySize: pulumi.String("string"),
},
},
},
},
NotAfter: pulumi.String("string"),
NotBefore: pulumi.String("string"),
PublicKey: pulumi.String("string"),
SelfSigned: pulumi.String("string"),
SerialNumber: pulumi.String("string"),
Signature: pulumi.String("string"),
SignatureAlgorithm: pulumi.String("string"),
SubjectAltNames: pulumi.StringArray{
pulumi.String("string"),
},
Subjects: avi.PkiprofileCaCertSubjectArray{
&avi.PkiprofileCaCertSubjectArgs{
CommonName: pulumi.String("string"),
Country: pulumi.String("string"),
DistinguishedName: pulumi.String("string"),
EmailAddress: pulumi.String("string"),
Locality: pulumi.String("string"),
Organization: pulumi.String("string"),
OrganizationUnit: pulumi.String("string"),
State: pulumi.String("string"),
},
},
Text: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
ConfigpbAttributes: avi.PkiprofileConfigpbAttributeArray{
&avi.PkiprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
CreatedBy: pulumi.String("string"),
CrlCheck: pulumi.String("string"),
CrlFileRefs: pulumi.StringArray{
pulumi.String("string"),
},
IgnorePeerChain: pulumi.String("string"),
IsFederated: pulumi.String("string"),
Markers: avi.PkiprofileMarkerArray{
&avi.PkiprofileMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
PkiprofileId: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
ValidateOnlyLeafCrl: pulumi.String("string"),
})
var pkiprofileResource = new Pkiprofile("pkiprofileResource", PkiprofileArgs.builder()
.allowPkiErrors("string")
.caCerts(PkiprofileCaCertArgs.builder()
.certificate("string")
.certificateSigningRequest("string")
.chainVerified("string")
.daysUntilExpire("string")
.expiryStatus("string")
.fingerprint("string")
.issuers(PkiprofileCaCertIssuerArgs.builder()
.commonName("string")
.country("string")
.distinguishedName("string")
.emailAddress("string")
.locality("string")
.organization("string")
.organizationUnit("string")
.state("string")
.build())
.keyParams(PkiprofileCaCertKeyParamArgs.builder()
.algorithm("string")
.ecParams(PkiprofileCaCertKeyParamEcParamArgs.builder()
.curve("string")
.build())
.rsaParams(PkiprofileCaCertKeyParamRsaParamArgs.builder()
.exponent("string")
.keySize("string")
.build())
.build())
.notAfter("string")
.notBefore("string")
.publicKey("string")
.selfSigned("string")
.serialNumber("string")
.signature("string")
.signatureAlgorithm("string")
.subjectAltNames("string")
.subjects(PkiprofileCaCertSubjectArgs.builder()
.commonName("string")
.country("string")
.distinguishedName("string")
.emailAddress("string")
.locality("string")
.organization("string")
.organizationUnit("string")
.state("string")
.build())
.text("string")
.version("string")
.build())
.configpbAttributes(PkiprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.createdBy("string")
.crlCheck("string")
.crlFileRefs("string")
.ignorePeerChain("string")
.isFederated("string")
.markers(PkiprofileMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.pkiprofileId("string")
.tenantRef("string")
.uuid("string")
.validateOnlyLeafCrl("string")
.build());
pkiprofile_resource = avi.Pkiprofile("pkiprofileResource",
allow_pki_errors=["string"],
ca_certs=[{
"certificate": "string",
"certificate_signing_request": "string",
"chain_verified": "string",
"days_until_expire": "string",
"expiry_status": "string",
"fingerprint": "string",
"issuers": [{
"common_name": "string",
"country": "string",
"distinguished_name": "string",
"email_address": "string",
"locality": "string",
"organization": "string",
"organization_unit": "string",
"state": "string",
}],
"key_params": [{
"algorithm": "string",
"ec_params": [{
"curve": "string",
}],
"rsa_params": [{
"exponent": "string",
"key_size": "string",
}],
}],
"not_after": "string",
"not_before": "string",
"public_key": "string",
"self_signed": "string",
"serial_number": "string",
"signature": "string",
"signature_algorithm": "string",
"subject_alt_names": ["string"],
"subjects": [{
"common_name": "string",
"country": "string",
"distinguished_name": "string",
"email_address": "string",
"locality": "string",
"organization": "string",
"organization_unit": "string",
"state": "string",
}],
"text": "string",
"version": "string",
}],
configpb_attributes=[{
"version": "string",
}],
created_by="string",
crl_check="string",
crl_file_refs=["string"],
ignore_peer_chain="string",
is_federated="string",
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
pkiprofile_id="string",
tenant_ref="string",
uuid="string",
validate_only_leaf_crl="string")
const pkiprofileResource = new avi.Pkiprofile("pkiprofileResource", {
allowPkiErrors: ["string"],
caCerts: [{
certificate: "string",
certificateSigningRequest: "string",
chainVerified: "string",
daysUntilExpire: "string",
expiryStatus: "string",
fingerprint: "string",
issuers: [{
commonName: "string",
country: "string",
distinguishedName: "string",
emailAddress: "string",
locality: "string",
organization: "string",
organizationUnit: "string",
state: "string",
}],
keyParams: [{
algorithm: "string",
ecParams: [{
curve: "string",
}],
rsaParams: [{
exponent: "string",
keySize: "string",
}],
}],
notAfter: "string",
notBefore: "string",
publicKey: "string",
selfSigned: "string",
serialNumber: "string",
signature: "string",
signatureAlgorithm: "string",
subjectAltNames: ["string"],
subjects: [{
commonName: "string",
country: "string",
distinguishedName: "string",
emailAddress: "string",
locality: "string",
organization: "string",
organizationUnit: "string",
state: "string",
}],
text: "string",
version: "string",
}],
configpbAttributes: [{
version: "string",
}],
createdBy: "string",
crlCheck: "string",
crlFileRefs: ["string"],
ignorePeerChain: "string",
isFederated: "string",
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
pkiprofileId: "string",
tenantRef: "string",
uuid: "string",
validateOnlyLeafCrl: "string",
});
type: avi:Pkiprofile
properties:
allowPkiErrors:
- string
caCerts:
- certificate: string
certificateSigningRequest: string
chainVerified: string
daysUntilExpire: string
expiryStatus: string
fingerprint: string
issuers:
- commonName: string
country: string
distinguishedName: string
emailAddress: string
locality: string
organization: string
organizationUnit: string
state: string
keyParams:
- algorithm: string
ecParams:
- curve: string
rsaParams:
- exponent: string
keySize: string
notAfter: string
notBefore: string
publicKey: string
selfSigned: string
serialNumber: string
signature: string
signatureAlgorithm: string
subjectAltNames:
- string
subjects:
- commonName: string
country: string
distinguishedName: string
emailAddress: string
locality: string
organization: string
organizationUnit: string
state: string
text: string
version: string
configpbAttributes:
- version: string
createdBy: string
crlCheck: string
crlFileRefs:
- string
ignorePeerChain: string
isFederated: string
markers:
- key: string
values:
- string
name: string
pkiprofileId: string
tenantRef: string
uuid: string
validateOnlyLeafCrl: string
Pkiprofile 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 Pkiprofile resource accepts the following input properties:
- Allow
Pki List<string>Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ca
Certs List<PkiprofileCa Cert> - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<PkiprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
Check string - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
File List<string>Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ignore
Peer stringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Pkiprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Pkiprofile
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Validate
Only stringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- Allow
Pki []stringErrors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ca
Certs []PkiprofileCa Cert Args - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []PkiprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
Check string - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
File []stringRefs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ignore
Peer stringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Pkiprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Pkiprofile
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Validate
Only stringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow
Pki List<String>Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca
Certs List<PkiprofileCa Cert> - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<PkiprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
Check String - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
File List<String>Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore
Peer StringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Pkiprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate
Only StringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow
Pki string[]Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca
Certs PkiprofileCa Cert[] - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes PkiprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
Check string - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
File string[]Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore
Peer stringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Pkiprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile
Id string - tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate
Only stringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow_
pki_ Sequence[str]errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca_
certs Sequence[PkiprofileCa Cert Args] - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[PkiprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created_
by str - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl_
check str - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl_
file_ Sequence[str]refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore_
peer_ strchain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is_
federated str - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Pkiprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile_
id str - tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate_
only_ strleaf_ crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow
Pki List<String>Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca
Certs List<Property Map> - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
Check String - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
File List<String>Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore
Peer StringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate
Only StringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Pkiprofile 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 Pkiprofile Resource
Get an existing Pkiprofile 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?: PkiprofileState, opts?: CustomResourceOptions): Pkiprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_pki_errors: Optional[Sequence[str]] = None,
ca_certs: Optional[Sequence[PkiprofileCaCertArgs]] = None,
configpb_attributes: Optional[Sequence[PkiprofileConfigpbAttributeArgs]] = None,
created_by: Optional[str] = None,
crl_check: Optional[str] = None,
crl_file_refs: Optional[Sequence[str]] = None,
ignore_peer_chain: Optional[str] = None,
is_federated: Optional[str] = None,
markers: Optional[Sequence[PkiprofileMarkerArgs]] = None,
name: Optional[str] = None,
pkiprofile_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None,
validate_only_leaf_crl: Optional[str] = None) -> Pkiprofile
func GetPkiprofile(ctx *Context, name string, id IDInput, state *PkiprofileState, opts ...ResourceOption) (*Pkiprofile, error)
public static Pkiprofile Get(string name, Input<string> id, PkiprofileState? state, CustomResourceOptions? opts = null)
public static Pkiprofile get(String name, Output<String> id, PkiprofileState state, CustomResourceOptions options)
resources: _: type: avi:Pkiprofile get: 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.
- Allow
Pki List<string>Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ca
Certs List<PkiprofileCa Cert> - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<PkiprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
Check string - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
File List<string>Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ignore
Peer stringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Pkiprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Pkiprofile
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Validate
Only stringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- Allow
Pki []stringErrors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ca
Certs []PkiprofileCa Cert Args - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []PkiprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
Check string - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Crl
File []stringRefs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ignore
Peer stringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- Is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Pkiprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Pkiprofile
Id string - Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Validate
Only stringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow
Pki List<String>Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca
Certs List<PkiprofileCa Cert> - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<PkiprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
Check String - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
File List<String>Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore
Peer StringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Pkiprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate
Only StringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow
Pki string[]Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca
Certs PkiprofileCa Cert[] - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes PkiprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By string - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
Check string - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
File string[]Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore
Peer stringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is
Federated string - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Pkiprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile
Id string - tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate
Only stringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow_
pki_ Sequence[str]errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca_
certs Sequence[PkiprofileCa Cert Args] - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[PkiprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created_
by str - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl_
check str - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl_
file_ Sequence[str]refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore_
peer_ strchain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is_
federated str - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Pkiprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile_
id str - tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate_
only_ strleaf_ crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
- allow
Pki List<String>Errors - Exempt errors during certificate verification. Enum options - ALLOW_EXPIRED_CRL, ALLOW_ALL_ERRORS. Field introduced in 30.1.1. Maximum of 1 items allowed. Allowed with any value in enterprise, enterprise with cloud services edition.
- ca
Certs List<Property Map> - List of certificate authorities (root and intermediate) trusted that is used for certificate validation. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- created
By String - Creator name. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
Check String - When enabled, avi will verify via crl checks that certificates in the trust chain have not been revoked. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- crl
File List<String>Refs - Refers to fileobject containing crl body. It is a reference to an object of type fileobject. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ignore
Peer StringChain - When enabled, avi will not trust intermediate and root certs presented by a client. Instead, only the chain certs configured in the certificate authority section will be used to verify trust of the client's cert. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition. Special default for essentials edition is true, basic edition is true, enterprise edition is false.
- is
Federated String - This field describes the object's replication scope. If the field is set to false, then the object is visible within the controller-cluster and its associated service-engines. If the field is set to true, then the object is replicated across the federation. Field introduced in 17.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- pkiprofile
Id String - tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- validate
Only StringLeaf Crl - When enabled, avi will only validate the revocation status of the leaf certificate using crl. To enable validation for the entire chain, disable this option and provide all the relevant crls. Allowed with any value in enterprise, enterprise with cloud services edition. Allowed in essentials (allowed values- true), basic (allowed values- true) edition.
Supporting Types
PkiprofileCaCert, PkiprofileCaCertArgs
- Certificate string
- Certificate
Signing stringRequest - Chain
Verified string - Days
Until stringExpire - Expiry
Status string - Fingerprint string
- Issuers
List<Pkiprofile
Ca Cert Issuer> - Key
Params List<PkiprofileCa Cert Key Param> - Not
After string - Not
Before string - Public
Key string - Self
Signed string - Serial
Number string - Signature string
- Signature
Algorithm string - Subject
Alt List<string>Names - Subjects
List<Pkiprofile
Ca Cert Subject> - Text string
- Version string
- Certificate string
- Certificate
Signing stringRequest - Chain
Verified string - Days
Until stringExpire - Expiry
Status string - Fingerprint string
- Issuers
[]Pkiprofile
Ca Cert Issuer - Key
Params []PkiprofileCa Cert Key Param - Not
After string - Not
Before string - Public
Key string - Self
Signed string - Serial
Number string - Signature string
- Signature
Algorithm string - Subject
Alt []stringNames - Subjects
[]Pkiprofile
Ca Cert Subject - Text string
- Version string
- certificate String
- certificate
Signing StringRequest - chain
Verified String - days
Until StringExpire - expiry
Status String - fingerprint String
- issuers
List<Pkiprofile
Ca Cert Issuer> - key
Params List<PkiprofileCa Cert Key Param> - not
After String - not
Before String - public
Key String - self
Signed String - serial
Number String - signature String
- signature
Algorithm String - subject
Alt List<String>Names - subjects
List<Pkiprofile
Ca Cert Subject> - text String
- version String
- certificate string
- certificate
Signing stringRequest - chain
Verified string - days
Until stringExpire - expiry
Status string - fingerprint string
- issuers
Pkiprofile
Ca Cert Issuer[] - key
Params PkiprofileCa Cert Key Param[] - not
After string - not
Before string - public
Key string - self
Signed string - serial
Number string - signature string
- signature
Algorithm string - subject
Alt string[]Names - subjects
Pkiprofile
Ca Cert Subject[] - text string
- version string
- certificate str
- certificate_
signing_ strrequest - chain_
verified str - days_
until_ strexpire - expiry_
status str - fingerprint str
- issuers
Sequence[Pkiprofile
Ca Cert Issuer] - key_
params Sequence[PkiprofileCa Cert Key Param] - not_
after str - not_
before str - public_
key str - self_
signed str - serial_
number str - signature str
- signature_
algorithm str - subject_
alt_ Sequence[str]names - subjects
Sequence[Pkiprofile
Ca Cert Subject] - text str
- version str
- certificate String
- certificate
Signing StringRequest - chain
Verified String - days
Until StringExpire - expiry
Status String - fingerprint String
- issuers List<Property Map>
- key
Params List<Property Map> - not
After String - not
Before String - public
Key String - self
Signed String - serial
Number String - signature String
- signature
Algorithm String - subject
Alt List<String>Names - subjects List<Property Map>
- text String
- version String
PkiprofileCaCertIssuer, PkiprofileCaCertIssuerArgs
- Common
Name string - Country string
- Distinguished
Name string - Email
Address string - Locality string
- Organization string
- Organization
Unit string - State string
- Common
Name string - Country string
- Distinguished
Name string - Email
Address string - Locality string
- Organization string
- Organization
Unit string - State string
- common
Name String - country String
- distinguished
Name String - email
Address String - locality String
- organization String
- organization
Unit String - state String
- common
Name string - country string
- distinguished
Name string - email
Address string - locality string
- organization string
- organization
Unit string - state string
- common_
name str - country str
- distinguished_
name str - email_
address str - locality str
- organization str
- organization_
unit str - state str
- common
Name String - country String
- distinguished
Name String - email
Address String - locality String
- organization String
- organization
Unit String - state String
PkiprofileCaCertKeyParam, PkiprofileCaCertKeyParamArgs
PkiprofileCaCertKeyParamEcParam, PkiprofileCaCertKeyParamEcParamArgs
- Curve string
- Curve string
- curve String
- curve string
- curve str
- curve String
PkiprofileCaCertKeyParamRsaParam, PkiprofileCaCertKeyParamRsaParamArgs
PkiprofileCaCertSubject, PkiprofileCaCertSubjectArgs
- Common
Name string - Country string
- Distinguished
Name string - Email
Address string - Locality string
- Organization string
- Organization
Unit string - State string
- Common
Name string - Country string
- Distinguished
Name string - Email
Address string - Locality string
- Organization string
- Organization
Unit string - State string
- common
Name String - country String
- distinguished
Name String - email
Address String - locality String
- organization String
- organization
Unit String - state String
- common
Name string - country string
- distinguished
Name string - email
Address string - locality string
- organization string
- organization
Unit string - state string
- common_
name str - country str
- distinguished_
name str - email_
address str - locality str
- organization str
- organization_
unit str - state str
- common
Name String - country String
- distinguished
Name String - email
Address String - locality String
- organization String
- organization
Unit String - state String
PkiprofileConfigpbAttribute, PkiprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
PkiprofileMarker, PkiprofileMarkerArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.