@pierskarsenbarg/sdm 1.7.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/account.d.ts +3 -1
- package/account.js +3 -1
- package/account.js.map +1 -1
- package/accountAttachment.d.ts +3 -1
- package/accountAttachment.js +3 -1
- package/accountAttachment.js.map +1 -1
- package/approvalWorkflow.d.ts +96 -0
- package/approvalWorkflow.js +80 -0
- package/approvalWorkflow.js.map +1 -0
- package/approvalWorkflowApproval.d.ts +115 -0
- package/approvalWorkflowApproval.js +92 -0
- package/approvalWorkflowApproval.js.map +1 -0
- package/approvalWorkflowStep.d.ts +70 -0
- package/approvalWorkflowStep.js +74 -0
- package/approvalWorkflowStep.js.map +1 -0
- package/getAccount.d.ts +21 -5
- package/getAccount.js +5 -0
- package/getAccount.js.map +1 -1
- package/getAccountAttachment.d.ts +4 -0
- package/getAccountAttachment.js +4 -0
- package/getAccountAttachment.js.map +1 -1
- package/getApprovalWorkflow.d.ts +117 -0
- package/getApprovalWorkflow.js +65 -0
- package/getApprovalWorkflow.js.map +1 -0
- package/getApprovalWorkflowApprover.d.ts +131 -0
- package/getApprovalWorkflowApprover.js +68 -0
- package/getApprovalWorkflowApprover.js.map +1 -0
- package/getApprovalWorkflowStep.d.ts +81 -0
- package/getApprovalWorkflowStep.js +51 -0
- package/getApprovalWorkflowStep.js.map +1 -0
- package/getNode.d.ts +6 -2
- package/getNode.js +4 -0
- package/getNode.js.map +1 -1
- package/getRemoteIdentity.d.ts +4 -0
- package/getRemoteIdentity.js +4 -0
- package/getRemoteIdentity.js.map +1 -1
- package/getRemoteIdentityGroup.d.ts +4 -0
- package/getRemoteIdentityGroup.js +4 -0
- package/getRemoteIdentityGroup.js.map +1 -1
- package/getResource.d.ts +6 -2
- package/getResource.js +4 -0
- package/getResource.js.map +1 -1
- package/getSecretStore.d.ts +3 -3
- package/getSshCaPubkey.d.ts +4 -0
- package/getSshCaPubkey.js +4 -0
- package/getSshCaPubkey.js.map +1 -1
- package/getWorkflow.d.ts +16 -0
- package/getWorkflow.js +5 -0
- package/getWorkflow.js.map +1 -1
- package/getWorkflowApprover.d.ts +36 -12
- package/getWorkflowApprover.js +20 -7
- package/getWorkflowApprover.js.map +1 -1
- package/getWorkflowRole.d.ts +4 -0
- package/getWorkflowRole.js +4 -0
- package/getWorkflowRole.js.map +1 -1
- package/index.d.ts +18 -0
- package/index.js +26 -1
- package/index.js.map +1 -1
- package/node.d.ts +3 -1
- package/node.js +3 -1
- package/node.js.map +1 -1
- package/package.json +1 -1
- package/peeringGroup.d.ts +1 -1
- package/peeringGroup.js +1 -1
- package/peeringGroupNode.d.ts +1 -1
- package/peeringGroupNode.js +1 -1
- package/peeringGroupPeer.d.ts +1 -1
- package/peeringGroupPeer.js +1 -1
- package/peeringGroupResource.d.ts +1 -1
- package/peeringGroupResource.js +1 -1
- package/remoteIdentity.d.ts +1 -2
- package/remoteIdentity.js +1 -2
- package/remoteIdentity.js.map +1 -1
- package/resource.d.ts +4 -19
- package/resource.js +3 -1
- package/resource.js.map +1 -1
- package/role.d.ts +3 -1
- package/role.js +3 -1
- package/role.js.map +1 -1
- package/secretStore.d.ts +28 -1
- package/secretStore.js +19 -1
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +351 -3
- package/types/output.d.ts +872 -56
- package/utilities.d.ts +4 -0
- package/utilities.js +33 -1
- package/utilities.js.map +1 -1
- package/workflow.d.ts +15 -1
- package/workflow.js +5 -1
- package/workflow.js.map +1 -1
- package/workflowApprover.d.ts +28 -10
- package/workflowApprover.js +14 -9
- package/workflowApprover.js.map +1 -1
- package/workflowRole.d.ts +3 -1
- package/workflowRole.js +3 -1
- package/workflowRole.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface AccountService {
|
|
|
6
6
|
*/
|
|
7
7
|
name: pulumi.Input<string>;
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The Service's suspended state.
|
|
10
10
|
*/
|
|
11
11
|
suspended?: pulumi.Input<boolean>;
|
|
12
12
|
/**
|
|
@@ -39,11 +39,11 @@ export interface AccountUser {
|
|
|
39
39
|
*/
|
|
40
40
|
managedBy?: pulumi.Input<string>;
|
|
41
41
|
/**
|
|
42
|
-
* PermissionLevel is
|
|
42
|
+
* PermissionLevel is the user's permission level e.g. admin, DBA, user.
|
|
43
43
|
*/
|
|
44
44
|
permissionLevel?: pulumi.Input<string>;
|
|
45
45
|
/**
|
|
46
|
-
* The
|
|
46
|
+
* The Service's suspended state.
|
|
47
47
|
*/
|
|
48
48
|
suspended?: pulumi.Input<boolean>;
|
|
49
49
|
/**
|
|
@@ -3884,6 +3884,58 @@ export interface ResourceRdp {
|
|
|
3884
3884
|
*/
|
|
3885
3885
|
username?: pulumi.Input<string>;
|
|
3886
3886
|
}
|
|
3887
|
+
export interface ResourceRdpCert {
|
|
3888
|
+
/**
|
|
3889
|
+
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
3890
|
+
*/
|
|
3891
|
+
bindInterface?: pulumi.Input<string>;
|
|
3892
|
+
/**
|
|
3893
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
3894
|
+
*/
|
|
3895
|
+
egressFilter?: pulumi.Input<string>;
|
|
3896
|
+
/**
|
|
3897
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
3898
|
+
*/
|
|
3899
|
+
hostname: pulumi.Input<string>;
|
|
3900
|
+
/**
|
|
3901
|
+
* Unique human-readable name of the Resource.
|
|
3902
|
+
*/
|
|
3903
|
+
name: pulumi.Input<string>;
|
|
3904
|
+
/**
|
|
3905
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
3906
|
+
*/
|
|
3907
|
+
port?: pulumi.Input<number>;
|
|
3908
|
+
/**
|
|
3909
|
+
* The local port used by clients to connect to this resource.
|
|
3910
|
+
*/
|
|
3911
|
+
portOverride?: pulumi.Input<number>;
|
|
3912
|
+
/**
|
|
3913
|
+
* The ID of the remote identity group to use for remote identity connections.
|
|
3914
|
+
*/
|
|
3915
|
+
remoteIdentityGroupId?: pulumi.Input<string>;
|
|
3916
|
+
/**
|
|
3917
|
+
* The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
|
|
3918
|
+
*/
|
|
3919
|
+
remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
|
|
3920
|
+
/**
|
|
3921
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
3922
|
+
*/
|
|
3923
|
+
secretStoreId?: pulumi.Input<string>;
|
|
3924
|
+
/**
|
|
3925
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3926
|
+
*/
|
|
3927
|
+
subdomain?: pulumi.Input<string>;
|
|
3928
|
+
/**
|
|
3929
|
+
* Tags is a map of key, value pairs.
|
|
3930
|
+
*/
|
|
3931
|
+
tags?: pulumi.Input<{
|
|
3932
|
+
[key: string]: pulumi.Input<string>;
|
|
3933
|
+
}>;
|
|
3934
|
+
/**
|
|
3935
|
+
* The username to authenticate with.
|
|
3936
|
+
*/
|
|
3937
|
+
username?: pulumi.Input<string>;
|
|
3938
|
+
}
|
|
3887
3939
|
export interface ResourceRdsPostgresIam {
|
|
3888
3940
|
/**
|
|
3889
3941
|
* The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
|
|
@@ -4789,6 +4841,22 @@ export interface ResourceTrino {
|
|
|
4789
4841
|
*/
|
|
4790
4842
|
username?: pulumi.Input<string>;
|
|
4791
4843
|
}
|
|
4844
|
+
export interface SecretStoreActiveDirectoryStore {
|
|
4845
|
+
/**
|
|
4846
|
+
* Unique human-readable name of the SecretStore.
|
|
4847
|
+
*/
|
|
4848
|
+
name: pulumi.Input<string>;
|
|
4849
|
+
/**
|
|
4850
|
+
* The URL of the Vault to target
|
|
4851
|
+
*/
|
|
4852
|
+
serverAddress: pulumi.Input<string>;
|
|
4853
|
+
/**
|
|
4854
|
+
* Tags is a map of key, value pairs.
|
|
4855
|
+
*/
|
|
4856
|
+
tags?: pulumi.Input<{
|
|
4857
|
+
[key: string]: pulumi.Input<string>;
|
|
4858
|
+
}>;
|
|
4859
|
+
}
|
|
4792
4860
|
export interface SecretStoreAws {
|
|
4793
4861
|
/**
|
|
4794
4862
|
* Unique human-readable name of the SecretStore.
|
|
@@ -4805,6 +4873,38 @@ export interface SecretStoreAws {
|
|
|
4805
4873
|
[key: string]: pulumi.Input<string>;
|
|
4806
4874
|
}>;
|
|
4807
4875
|
}
|
|
4876
|
+
export interface SecretStoreAwsCertX509 {
|
|
4877
|
+
/**
|
|
4878
|
+
* The ARN of the CA in AWS Private CA
|
|
4879
|
+
*/
|
|
4880
|
+
caArn: pulumi.Input<string>;
|
|
4881
|
+
/**
|
|
4882
|
+
* The ARN of the AWS certificate template for requested certificates. Must allow SAN, key usage, and ext key usage passthrough from CSR
|
|
4883
|
+
*/
|
|
4884
|
+
certificateTemplateArn: pulumi.Input<string>;
|
|
4885
|
+
/**
|
|
4886
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
4887
|
+
*/
|
|
4888
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
4889
|
+
/**
|
|
4890
|
+
* Unique human-readable name of the SecretStore.
|
|
4891
|
+
*/
|
|
4892
|
+
name: pulumi.Input<string>;
|
|
4893
|
+
/**
|
|
4894
|
+
* The AWS region to target e.g. us-east-1
|
|
4895
|
+
*/
|
|
4896
|
+
region: pulumi.Input<string>;
|
|
4897
|
+
/**
|
|
4898
|
+
* The specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key. e.g. SHA256WITHRSA
|
|
4899
|
+
*/
|
|
4900
|
+
signingAlgo: pulumi.Input<string>;
|
|
4901
|
+
/**
|
|
4902
|
+
* Tags is a map of key, value pairs.
|
|
4903
|
+
*/
|
|
4904
|
+
tags?: pulumi.Input<{
|
|
4905
|
+
[key: string]: pulumi.Input<string>;
|
|
4906
|
+
}>;
|
|
4907
|
+
}
|
|
4808
4908
|
export interface SecretStoreAzureStore {
|
|
4809
4909
|
/**
|
|
4810
4910
|
* Unique human-readable name of the SecretStore.
|
|
@@ -4891,6 +4991,38 @@ export interface SecretStoreDelineaStore {
|
|
|
4891
4991
|
*/
|
|
4892
4992
|
tenantName?: pulumi.Input<string>;
|
|
4893
4993
|
}
|
|
4994
|
+
export interface SecretStoreGcpCertX509Store {
|
|
4995
|
+
/**
|
|
4996
|
+
* The ID of the target CA
|
|
4997
|
+
*/
|
|
4998
|
+
caId?: pulumi.Input<string>;
|
|
4999
|
+
/**
|
|
5000
|
+
* The ID of the target CA pool
|
|
5001
|
+
*/
|
|
5002
|
+
caPoolId: pulumi.Input<string>;
|
|
5003
|
+
/**
|
|
5004
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5005
|
+
*/
|
|
5006
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5007
|
+
/**
|
|
5008
|
+
* The Region for the CA in GCP format e.g. us-west1
|
|
5009
|
+
*/
|
|
5010
|
+
location: pulumi.Input<string>;
|
|
5011
|
+
/**
|
|
5012
|
+
* Unique human-readable name of the SecretStore.
|
|
5013
|
+
*/
|
|
5014
|
+
name: pulumi.Input<string>;
|
|
5015
|
+
/**
|
|
5016
|
+
* The GCP project ID to target.
|
|
5017
|
+
*/
|
|
5018
|
+
projectId: pulumi.Input<string>;
|
|
5019
|
+
/**
|
|
5020
|
+
* Tags is a map of key, value pairs.
|
|
5021
|
+
*/
|
|
5022
|
+
tags?: pulumi.Input<{
|
|
5023
|
+
[key: string]: pulumi.Input<string>;
|
|
5024
|
+
}>;
|
|
5025
|
+
}
|
|
4894
5026
|
export interface SecretStoreGcpStore {
|
|
4895
5027
|
/**
|
|
4896
5028
|
* Unique human-readable name of the SecretStore.
|
|
@@ -4927,6 +5059,70 @@ export interface SecretStoreVaultApprole {
|
|
|
4927
5059
|
[key: string]: pulumi.Input<string>;
|
|
4928
5060
|
}>;
|
|
4929
5061
|
}
|
|
5062
|
+
export interface SecretStoreVaultApproleCertSsh {
|
|
5063
|
+
/**
|
|
5064
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5065
|
+
*/
|
|
5066
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5067
|
+
/**
|
|
5068
|
+
* Unique human-readable name of the SecretStore.
|
|
5069
|
+
*/
|
|
5070
|
+
name: pulumi.Input<string>;
|
|
5071
|
+
/**
|
|
5072
|
+
* The namespace to make requests within
|
|
5073
|
+
*/
|
|
5074
|
+
namespace?: pulumi.Input<string>;
|
|
5075
|
+
/**
|
|
5076
|
+
* The URL of the Vault to target
|
|
5077
|
+
*/
|
|
5078
|
+
serverAddress: pulumi.Input<string>;
|
|
5079
|
+
/**
|
|
5080
|
+
* The signing role to be used for signing certificates
|
|
5081
|
+
*/
|
|
5082
|
+
signingRole: pulumi.Input<string>;
|
|
5083
|
+
/**
|
|
5084
|
+
* The mount point of the SSH engine configured with the desired CA
|
|
5085
|
+
*/
|
|
5086
|
+
sshMountPoint: pulumi.Input<string>;
|
|
5087
|
+
/**
|
|
5088
|
+
* Tags is a map of key, value pairs.
|
|
5089
|
+
*/
|
|
5090
|
+
tags?: pulumi.Input<{
|
|
5091
|
+
[key: string]: pulumi.Input<string>;
|
|
5092
|
+
}>;
|
|
5093
|
+
}
|
|
5094
|
+
export interface SecretStoreVaultApproleCertX509 {
|
|
5095
|
+
/**
|
|
5096
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5097
|
+
*/
|
|
5098
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5099
|
+
/**
|
|
5100
|
+
* Unique human-readable name of the SecretStore.
|
|
5101
|
+
*/
|
|
5102
|
+
name: pulumi.Input<string>;
|
|
5103
|
+
/**
|
|
5104
|
+
* The namespace to make requests within
|
|
5105
|
+
*/
|
|
5106
|
+
namespace?: pulumi.Input<string>;
|
|
5107
|
+
/**
|
|
5108
|
+
* The mount point of the PKI engine configured with the desired CA
|
|
5109
|
+
*/
|
|
5110
|
+
pkiMountPoint: pulumi.Input<string>;
|
|
5111
|
+
/**
|
|
5112
|
+
* The URL of the Vault to target
|
|
5113
|
+
*/
|
|
5114
|
+
serverAddress: pulumi.Input<string>;
|
|
5115
|
+
/**
|
|
5116
|
+
* The signing role to be used for signing certificates
|
|
5117
|
+
*/
|
|
5118
|
+
signingRole: pulumi.Input<string>;
|
|
5119
|
+
/**
|
|
5120
|
+
* Tags is a map of key, value pairs.
|
|
5121
|
+
*/
|
|
5122
|
+
tags?: pulumi.Input<{
|
|
5123
|
+
[key: string]: pulumi.Input<string>;
|
|
5124
|
+
}>;
|
|
5125
|
+
}
|
|
4930
5126
|
export interface SecretStoreVaultTls {
|
|
4931
5127
|
/**
|
|
4932
5128
|
* A path to a CA file accessible by a Node
|
|
@@ -4959,6 +5155,94 @@ export interface SecretStoreVaultTls {
|
|
|
4959
5155
|
[key: string]: pulumi.Input<string>;
|
|
4960
5156
|
}>;
|
|
4961
5157
|
}
|
|
5158
|
+
export interface SecretStoreVaultTlsCertSsh {
|
|
5159
|
+
/**
|
|
5160
|
+
* A path to a CA file accessible by a Node
|
|
5161
|
+
*/
|
|
5162
|
+
caCertPath?: pulumi.Input<string>;
|
|
5163
|
+
/**
|
|
5164
|
+
* A path to a client certificate file accessible by a Node
|
|
5165
|
+
*/
|
|
5166
|
+
clientCertPath: pulumi.Input<string>;
|
|
5167
|
+
/**
|
|
5168
|
+
* A path to a client key file accessible by a Node
|
|
5169
|
+
*/
|
|
5170
|
+
clientKeyPath: pulumi.Input<string>;
|
|
5171
|
+
/**
|
|
5172
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5173
|
+
*/
|
|
5174
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5175
|
+
/**
|
|
5176
|
+
* Unique human-readable name of the SecretStore.
|
|
5177
|
+
*/
|
|
5178
|
+
name: pulumi.Input<string>;
|
|
5179
|
+
/**
|
|
5180
|
+
* The namespace to make requests within
|
|
5181
|
+
*/
|
|
5182
|
+
namespace?: pulumi.Input<string>;
|
|
5183
|
+
/**
|
|
5184
|
+
* The URL of the Vault to target
|
|
5185
|
+
*/
|
|
5186
|
+
serverAddress: pulumi.Input<string>;
|
|
5187
|
+
/**
|
|
5188
|
+
* The signing role to be used for signing certificates
|
|
5189
|
+
*/
|
|
5190
|
+
signingRole: pulumi.Input<string>;
|
|
5191
|
+
/**
|
|
5192
|
+
* The mount point of the SSH engine configured with the desired CA
|
|
5193
|
+
*/
|
|
5194
|
+
sshMountPoint: pulumi.Input<string>;
|
|
5195
|
+
/**
|
|
5196
|
+
* Tags is a map of key, value pairs.
|
|
5197
|
+
*/
|
|
5198
|
+
tags?: pulumi.Input<{
|
|
5199
|
+
[key: string]: pulumi.Input<string>;
|
|
5200
|
+
}>;
|
|
5201
|
+
}
|
|
5202
|
+
export interface SecretStoreVaultTlsCertX509 {
|
|
5203
|
+
/**
|
|
5204
|
+
* A path to a CA file accessible by a Node
|
|
5205
|
+
*/
|
|
5206
|
+
caCertPath?: pulumi.Input<string>;
|
|
5207
|
+
/**
|
|
5208
|
+
* A path to a client certificate file accessible by a Node
|
|
5209
|
+
*/
|
|
5210
|
+
clientCertPath: pulumi.Input<string>;
|
|
5211
|
+
/**
|
|
5212
|
+
* A path to a client key file accessible by a Node
|
|
5213
|
+
*/
|
|
5214
|
+
clientKeyPath: pulumi.Input<string>;
|
|
5215
|
+
/**
|
|
5216
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5217
|
+
*/
|
|
5218
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5219
|
+
/**
|
|
5220
|
+
* Unique human-readable name of the SecretStore.
|
|
5221
|
+
*/
|
|
5222
|
+
name: pulumi.Input<string>;
|
|
5223
|
+
/**
|
|
5224
|
+
* The namespace to make requests within
|
|
5225
|
+
*/
|
|
5226
|
+
namespace?: pulumi.Input<string>;
|
|
5227
|
+
/**
|
|
5228
|
+
* The mount point of the PKI engine configured with the desired CA
|
|
5229
|
+
*/
|
|
5230
|
+
pkiMountPoint: pulumi.Input<string>;
|
|
5231
|
+
/**
|
|
5232
|
+
* The URL of the Vault to target
|
|
5233
|
+
*/
|
|
5234
|
+
serverAddress: pulumi.Input<string>;
|
|
5235
|
+
/**
|
|
5236
|
+
* The signing role to be used for signing certificates
|
|
5237
|
+
*/
|
|
5238
|
+
signingRole: pulumi.Input<string>;
|
|
5239
|
+
/**
|
|
5240
|
+
* Tags is a map of key, value pairs.
|
|
5241
|
+
*/
|
|
5242
|
+
tags?: pulumi.Input<{
|
|
5243
|
+
[key: string]: pulumi.Input<string>;
|
|
5244
|
+
}>;
|
|
5245
|
+
}
|
|
4962
5246
|
export interface SecretStoreVaultToken {
|
|
4963
5247
|
/**
|
|
4964
5248
|
* Unique human-readable name of the SecretStore.
|
|
@@ -4979,3 +5263,67 @@ export interface SecretStoreVaultToken {
|
|
|
4979
5263
|
[key: string]: pulumi.Input<string>;
|
|
4980
5264
|
}>;
|
|
4981
5265
|
}
|
|
5266
|
+
export interface SecretStoreVaultTokenCertSsh {
|
|
5267
|
+
/**
|
|
5268
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5269
|
+
*/
|
|
5270
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5271
|
+
/**
|
|
5272
|
+
* Unique human-readable name of the SecretStore.
|
|
5273
|
+
*/
|
|
5274
|
+
name: pulumi.Input<string>;
|
|
5275
|
+
/**
|
|
5276
|
+
* The namespace to make requests within
|
|
5277
|
+
*/
|
|
5278
|
+
namespace?: pulumi.Input<string>;
|
|
5279
|
+
/**
|
|
5280
|
+
* The URL of the Vault to target
|
|
5281
|
+
*/
|
|
5282
|
+
serverAddress: pulumi.Input<string>;
|
|
5283
|
+
/**
|
|
5284
|
+
* The signing role to be used for signing certificates
|
|
5285
|
+
*/
|
|
5286
|
+
signingRole: pulumi.Input<string>;
|
|
5287
|
+
/**
|
|
5288
|
+
* The mount point of the SSH engine configured with the desired CA
|
|
5289
|
+
*/
|
|
5290
|
+
sshMountPoint: pulumi.Input<string>;
|
|
5291
|
+
/**
|
|
5292
|
+
* Tags is a map of key, value pairs.
|
|
5293
|
+
*/
|
|
5294
|
+
tags?: pulumi.Input<{
|
|
5295
|
+
[key: string]: pulumi.Input<string>;
|
|
5296
|
+
}>;
|
|
5297
|
+
}
|
|
5298
|
+
export interface SecretStoreVaultTokenCertX509 {
|
|
5299
|
+
/**
|
|
5300
|
+
* The lifetime of certificates issued by this CA represented in minutes.
|
|
5301
|
+
*/
|
|
5302
|
+
issuedCertTtlMinutes: pulumi.Input<number>;
|
|
5303
|
+
/**
|
|
5304
|
+
* Unique human-readable name of the SecretStore.
|
|
5305
|
+
*/
|
|
5306
|
+
name: pulumi.Input<string>;
|
|
5307
|
+
/**
|
|
5308
|
+
* The namespace to make requests within
|
|
5309
|
+
*/
|
|
5310
|
+
namespace?: pulumi.Input<string>;
|
|
5311
|
+
/**
|
|
5312
|
+
* The mount point of the PKI engine configured with the desired CA
|
|
5313
|
+
*/
|
|
5314
|
+
pkiMountPoint: pulumi.Input<string>;
|
|
5315
|
+
/**
|
|
5316
|
+
* The URL of the Vault to target
|
|
5317
|
+
*/
|
|
5318
|
+
serverAddress: pulumi.Input<string>;
|
|
5319
|
+
/**
|
|
5320
|
+
* The signing role to be used for signing certificates
|
|
5321
|
+
*/
|
|
5322
|
+
signingRole: pulumi.Input<string>;
|
|
5323
|
+
/**
|
|
5324
|
+
* Tags is a map of key, value pairs.
|
|
5325
|
+
*/
|
|
5326
|
+
tags?: pulumi.Input<{
|
|
5327
|
+
[key: string]: pulumi.Input<string>;
|
|
5328
|
+
}>;
|
|
5329
|
+
}
|