Class SecretBackendConfigUrls
Allows setting the issuing certificate endpoints, CRL distribution points, and OCSP server endpoints that will be encoded into issued certificates.
Example Usage
using Pulumi;
using Vault = Pulumi.Vault;
class MyStack : Stack
{
public MyStack()
{
var pki = new Vault.PkiSecret.SecretBackend("pki", new Vault.PkiSecret.SecretBackendArgs
{
DefaultLeaseTtlSeconds = 3600,
MaxLeaseTtlSeconds = 86400,
Path = "%s",
});
var configUrls = new Vault.PkiSecret.SecretBackendConfigUrls("configUrls", new Vault.PkiSecret.SecretBackendConfigUrlsArgs
{
Backend = pki.Path,
IssuingCertificates =
{
"http://127.0.0.1:8200/v1/pki/ca",
},
});
}
}
Inherited Members
Namespace: Pulumi.Vault.PkiSecret
Assembly: Pulumi.Vault.dll
Syntax
public class SecretBackendConfigUrls : CustomResource
Constructors
View SourceSecretBackendConfigUrls(String, SecretBackendConfigUrlsArgs, CustomResourceOptions)
Create a SecretBackendConfigUrls resource with the given unique name, arguments, and options.
Declaration
public SecretBackendConfigUrls(string name, SecretBackendConfigUrlsArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| SecretBackendConfigUrlsArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceBackend
The path the PKI secret backend is mounted at, with no leading or trailing /s.
Declaration
public Output<string> Backend { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
CrlDistributionPoints
Specifies the URL values for the CRL Distribution Points field.
Declaration
public Output<ImmutableArray<string>> CrlDistributionPoints { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
IssuingCertificates
Specifies the URL values for the Issuing Certificate field.
Declaration
public Output<ImmutableArray<string>> IssuingCertificates { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
OcspServers
Specifies the URL values for the OCSP Servers field.
Declaration
public Output<ImmutableArray<string>> OcspServers { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
Methods
View SourceGet(String, Input<String>, SecretBackendConfigUrlsState, CustomResourceOptions)
Get an existing SecretBackendConfigUrls resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static SecretBackendConfigUrls Get(string name, Input<string> id, SecretBackendConfigUrlsState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| SecretBackendConfigUrlsState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| SecretBackendConfigUrls |