@pierskarsenbarg/sdm 1.26.0 → 1.28.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.
Files changed (59) hide show
  1. package/account.d.ts +2 -0
  2. package/account.js +2 -0
  3. package/account.js.map +1 -1
  4. package/approvalWorkflow.d.ts +46 -1
  5. package/approvalWorkflow.js +34 -1
  6. package/approvalWorkflow.js.map +1 -1
  7. package/getAccount.d.ts +12 -0
  8. package/getAccount.js +2 -0
  9. package/getAccount.js.map +1 -1
  10. package/getApprovalWorkflow.d.ts +13 -0
  11. package/getApprovalWorkflow.js +2 -0
  12. package/getApprovalWorkflow.js.map +1 -1
  13. package/getManagedSecret.d.ts +115 -0
  14. package/getManagedSecret.js +38 -0
  15. package/getManagedSecret.js.map +1 -0
  16. package/getResource.d.ts +1 -1
  17. package/getSecretEngine.d.ts +254 -0
  18. package/getSecretEngine.js +64 -0
  19. package/getSecretEngine.js.map +1 -0
  20. package/getWorkflow.d.ts +6 -0
  21. package/getWorkflow.js.map +1 -1
  22. package/getWorkflowApprover.d.ts +2 -30
  23. package/getWorkflowApprover.js +2 -30
  24. package/getWorkflowApprover.js.map +1 -1
  25. package/index.d.ts +13 -15
  26. package/index.js +35 -21
  27. package/index.js.map +1 -1
  28. package/managedSecret.d.ts +134 -0
  29. package/managedSecret.js +80 -0
  30. package/managedSecret.js.map +1 -0
  31. package/package.json +1 -1
  32. package/provider.d.ts +14 -0
  33. package/provider.js +8 -0
  34. package/provider.js.map +1 -1
  35. package/resource.d.ts +45 -27
  36. package/resource.js +10 -0
  37. package/resource.js.map +1 -1
  38. package/secretEngine.d.ts +74 -0
  39. package/secretEngine.js +63 -0
  40. package/secretEngine.js.map +1 -0
  41. package/types/input.d.ts +481 -0
  42. package/types/output.d.ts +954 -26
  43. package/workflow.d.ts +6 -0
  44. package/workflow.js.map +1 -1
  45. package/workflowApprover.d.ts +1 -15
  46. package/workflowApprover.js +1 -15
  47. package/workflowApprover.js.map +1 -1
  48. package/approvalWorkflowApprover.d.ts +0 -113
  49. package/approvalWorkflowApprover.js +0 -90
  50. package/approvalWorkflowApprover.js.map +0 -1
  51. package/approvalWorkflowStep.d.ts +0 -68
  52. package/approvalWorkflowStep.js +0 -72
  53. package/approvalWorkflowStep.js.map +0 -1
  54. package/getApprovalWorkflowApprover.d.ts +0 -127
  55. package/getApprovalWorkflowApprover.js +0 -72
  56. package/getApprovalWorkflowApprover.js.map +0 -1
  57. package/getApprovalWorkflowStep.d.ts +0 -77
  58. package/getApprovalWorkflowStep.js +0 -52
  59. package/getApprovalWorkflowStep.js.map +0 -1
package/types/input.d.ts CHANGED
@@ -38,10 +38,22 @@ export interface AccountUser {
38
38
  * Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
39
39
  */
40
40
  managedBy?: pulumi.Input<string>;
41
+ /**
42
+ * Manager ID is the ID of the user's manager. This field is empty when the user has no manager.
43
+ */
44
+ managerId?: pulumi.Input<string>;
41
45
  /**
42
46
  * PermissionLevel is the user's permission level e.g. admin, DBA, user.
43
47
  */
44
48
  permissionLevel?: pulumi.Input<string>;
49
+ /**
50
+ * Resolved Manager ID is the ID of the user's manager derived from the manager_id, if present, or from the SCIM metadata. This is a read-only field that's only populated for get and list.
51
+ */
52
+ resolvedManagerId?: pulumi.Input<string>;
53
+ /**
54
+ * SCIM contains the raw SCIM metadata for the user. This is a read-only field.
55
+ */
56
+ scim?: pulumi.Input<string>;
45
57
  /**
46
58
  * The Service's suspended state.
47
59
  */
@@ -53,6 +65,90 @@ export interface AccountUser {
53
65
  [key: string]: pulumi.Input<string>;
54
66
  }>;
55
67
  }
68
+ export interface ApprovalWorkflowApprovalStep {
69
+ /**
70
+ * The approvers for this approval step
71
+ */
72
+ approvers: pulumi.Input<pulumi.Input<inputs.ApprovalWorkflowApprovalStepApprover>[]>;
73
+ /**
74
+ * Whether any or all approvers are required to approve for this approval step (optional, defaults to any)
75
+ */
76
+ quantifier?: pulumi.Input<string>;
77
+ /**
78
+ * Duration after which this approval step will be skipped if no approval is given (optional, if not provided this step must be manually approved)
79
+ */
80
+ skipAfter?: pulumi.Input<string>;
81
+ }
82
+ export interface ApprovalWorkflowApprovalStepApprover {
83
+ /**
84
+ * The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
85
+ */
86
+ accountId?: pulumi.Input<string>;
87
+ /**
88
+ * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
89
+ */
90
+ reference?: pulumi.Input<string>;
91
+ /**
92
+ * The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
93
+ */
94
+ roleId?: pulumi.Input<string>;
95
+ }
96
+ export interface GetApprovalWorkflowApprovalStep {
97
+ /**
98
+ * The approvers for this approval step
99
+ */
100
+ approvers: inputs.GetApprovalWorkflowApprovalStepApprover[];
101
+ /**
102
+ * Whether any or all approvers are required to approve for this approval step (optional, defaults to any)
103
+ */
104
+ quantifier?: string;
105
+ /**
106
+ * Duration after which this approval step will be skipped if no approval is given (optional, if not provided this step must be manually approved)
107
+ */
108
+ skipAfter?: string;
109
+ }
110
+ export interface GetApprovalWorkflowApprovalStepArgs {
111
+ /**
112
+ * The approvers for this approval step
113
+ */
114
+ approvers: pulumi.Input<pulumi.Input<inputs.GetApprovalWorkflowApprovalStepApproverArgs>[]>;
115
+ /**
116
+ * Whether any or all approvers are required to approve for this approval step (optional, defaults to any)
117
+ */
118
+ quantifier?: pulumi.Input<string>;
119
+ /**
120
+ * Duration after which this approval step will be skipped if no approval is given (optional, if not provided this step must be manually approved)
121
+ */
122
+ skipAfter?: pulumi.Input<string>;
123
+ }
124
+ export interface GetApprovalWorkflowApprovalStepApprover {
125
+ /**
126
+ * The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
127
+ */
128
+ accountId?: string;
129
+ /**
130
+ * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
131
+ */
132
+ reference?: string;
133
+ /**
134
+ * The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
135
+ */
136
+ roleId?: string;
137
+ }
138
+ export interface GetApprovalWorkflowApprovalStepApproverArgs {
139
+ /**
140
+ * The account id of the approver (only one of account_id, role_id, or reference may be present for one approver)
141
+ */
142
+ accountId?: pulumi.Input<string>;
143
+ /**
144
+ * A reference to an approver: 'manager-of-requester' or 'manager-of-manager-of-requester' (only one of account_id, role_id, or reference may be present for one approver)
145
+ */
146
+ reference?: pulumi.Input<string>;
147
+ /**
148
+ * The role id of the approver (only one of account_id, role_id, or reference may be present for one approver)
149
+ */
150
+ roleId?: pulumi.Input<string>;
151
+ }
56
152
  export interface NodeGateway {
57
153
  /**
58
154
  * The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
@@ -159,6 +255,58 @@ export interface NodeRelayMaintenanceWindow {
159
255
  cronSchedule: pulumi.Input<string>;
160
256
  requireIdleness: pulumi.Input<boolean>;
161
257
  }
258
+ export interface ResourceAerospike {
259
+ /**
260
+ * 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.
261
+ */
262
+ bindInterface?: pulumi.Input<string>;
263
+ /**
264
+ * A filter applied to the routing logic to pin datasource to nodes.
265
+ */
266
+ egressFilter?: pulumi.Input<string>;
267
+ /**
268
+ * The host to dial to initiate a connection from the egress node to this resource.
269
+ */
270
+ hostname: pulumi.Input<string>;
271
+ /**
272
+ * Unique human-readable name of the Resource.
273
+ */
274
+ name: pulumi.Input<string>;
275
+ /**
276
+ * The password to authenticate with.
277
+ */
278
+ password?: pulumi.Input<string>;
279
+ /**
280
+ * The port to dial to initiate a connection from the egress node to this resource.
281
+ */
282
+ port?: pulumi.Input<number>;
283
+ /**
284
+ * The local port used by clients to connect to this resource.
285
+ */
286
+ portOverride?: pulumi.Input<number>;
287
+ /**
288
+ * ID of the proxy cluster for this resource, if any.
289
+ */
290
+ proxyClusterId?: pulumi.Input<string>;
291
+ /**
292
+ * ID of the secret store containing credentials for this resource, if any.
293
+ */
294
+ secretStoreId?: pulumi.Input<string>;
295
+ /**
296
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
297
+ */
298
+ subdomain?: pulumi.Input<string>;
299
+ /**
300
+ * Tags is a map of key, value pairs.
301
+ */
302
+ tags?: pulumi.Input<{
303
+ [key: string]: pulumi.Input<string>;
304
+ }>;
305
+ /**
306
+ * The username to authenticate with.
307
+ */
308
+ username?: pulumi.Input<string>;
309
+ }
162
310
  export interface ResourceAks {
163
311
  /**
164
312
  * If true, allows users to fallback to the existing authentication mode (Leased Credential or Identity Set) when a resource role is not provided.
@@ -2697,6 +2845,54 @@ export interface ResourceDocumentDbReplicaSet {
2697
2845
  */
2698
2846
  username?: pulumi.Input<string>;
2699
2847
  }
2848
+ export interface ResourceDocumentDbReplicaSetIam {
2849
+ /**
2850
+ * 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.
2851
+ */
2852
+ bindInterface?: pulumi.Input<string>;
2853
+ /**
2854
+ * Set to connect to a replica instead of the primary node.
2855
+ */
2856
+ connectToReplica?: pulumi.Input<boolean>;
2857
+ /**
2858
+ * A filter applied to the routing logic to pin datasource to nodes.
2859
+ */
2860
+ egressFilter?: pulumi.Input<string>;
2861
+ /**
2862
+ * The host to dial to initiate a connection from the egress node to this resource.
2863
+ */
2864
+ hostname: pulumi.Input<string>;
2865
+ /**
2866
+ * Unique human-readable name of the Resource.
2867
+ */
2868
+ name: pulumi.Input<string>;
2869
+ /**
2870
+ * The local port used by clients to connect to this resource.
2871
+ */
2872
+ portOverride?: pulumi.Input<number>;
2873
+ /**
2874
+ * ID of the proxy cluster for this resource, if any.
2875
+ */
2876
+ proxyClusterId?: pulumi.Input<string>;
2877
+ /**
2878
+ * The AWS region to connect to.
2879
+ */
2880
+ region: pulumi.Input<string>;
2881
+ /**
2882
+ * ID of the secret store containing credentials for this resource, if any.
2883
+ */
2884
+ secretStoreId?: pulumi.Input<string>;
2885
+ /**
2886
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2887
+ */
2888
+ subdomain?: pulumi.Input<string>;
2889
+ /**
2890
+ * Tags is a map of key, value pairs.
2891
+ */
2892
+ tags?: pulumi.Input<{
2893
+ [key: string]: pulumi.Input<string>;
2894
+ }>;
2895
+ }
2700
2896
  export interface ResourceDruid {
2701
2897
  /**
2702
2898
  * 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.
@@ -4744,6 +4940,62 @@ export interface ResourceOracle {
4744
4940
  */
4745
4941
  username?: pulumi.Input<string>;
4746
4942
  }
4943
+ export interface ResourceOracleNne {
4944
+ /**
4945
+ * 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.
4946
+ */
4947
+ bindInterface?: pulumi.Input<string>;
4948
+ /**
4949
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
4950
+ */
4951
+ database: pulumi.Input<string>;
4952
+ /**
4953
+ * A filter applied to the routing logic to pin datasource to nodes.
4954
+ */
4955
+ egressFilter?: pulumi.Input<string>;
4956
+ /**
4957
+ * The host to dial to initiate a connection from the egress node to this resource.
4958
+ */
4959
+ hostname: pulumi.Input<string>;
4960
+ /**
4961
+ * Unique human-readable name of the Resource.
4962
+ */
4963
+ name: pulumi.Input<string>;
4964
+ /**
4965
+ * The password to authenticate with.
4966
+ */
4967
+ password?: pulumi.Input<string>;
4968
+ /**
4969
+ * The port to dial to initiate a connection from the egress node to this resource.
4970
+ */
4971
+ port: pulumi.Input<number>;
4972
+ /**
4973
+ * The local port used by clients to connect to this resource.
4974
+ */
4975
+ portOverride?: pulumi.Input<number>;
4976
+ /**
4977
+ * ID of the proxy cluster for this resource, if any.
4978
+ */
4979
+ proxyClusterId?: pulumi.Input<string>;
4980
+ /**
4981
+ * ID of the secret store containing credentials for this resource, if any.
4982
+ */
4983
+ secretStoreId?: pulumi.Input<string>;
4984
+ /**
4985
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
4986
+ */
4987
+ subdomain?: pulumi.Input<string>;
4988
+ /**
4989
+ * Tags is a map of key, value pairs.
4990
+ */
4991
+ tags?: pulumi.Input<{
4992
+ [key: string]: pulumi.Input<string>;
4993
+ }>;
4994
+ /**
4995
+ * The username to authenticate with.
4996
+ */
4997
+ username?: pulumi.Input<string>;
4998
+ }
4747
4999
  export interface ResourcePostgres {
4748
5000
  /**
4749
5001
  * 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.
@@ -5204,6 +5456,62 @@ export interface ResourceRedis {
5204
5456
  */
5205
5457
  username?: pulumi.Input<string>;
5206
5458
  }
5459
+ export interface ResourceRedisCluster {
5460
+ /**
5461
+ * 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.
5462
+ */
5463
+ bindInterface?: pulumi.Input<string>;
5464
+ /**
5465
+ * A filter applied to the routing logic to pin datasource to nodes.
5466
+ */
5467
+ egressFilter?: pulumi.Input<string>;
5468
+ /**
5469
+ * The host to dial to initiate a connection from the egress node to this resource.
5470
+ */
5471
+ hostname: pulumi.Input<string>;
5472
+ /**
5473
+ * Unique human-readable name of the Resource.
5474
+ */
5475
+ name: pulumi.Input<string>;
5476
+ /**
5477
+ * The password to authenticate with.
5478
+ */
5479
+ password?: pulumi.Input<string>;
5480
+ /**
5481
+ * The port to dial to initiate a connection from the egress node to this resource.
5482
+ */
5483
+ port?: pulumi.Input<number>;
5484
+ /**
5485
+ * The local port used by clients to connect to this resource.
5486
+ */
5487
+ portOverride?: pulumi.Input<number>;
5488
+ /**
5489
+ * ID of the proxy cluster for this resource, if any.
5490
+ */
5491
+ proxyClusterId?: pulumi.Input<string>;
5492
+ /**
5493
+ * ID of the secret store containing credentials for this resource, if any.
5494
+ */
5495
+ secretStoreId?: pulumi.Input<string>;
5496
+ /**
5497
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
5498
+ */
5499
+ subdomain?: pulumi.Input<string>;
5500
+ /**
5501
+ * Tags is a map of key, value pairs.
5502
+ */
5503
+ tags?: pulumi.Input<{
5504
+ [key: string]: pulumi.Input<string>;
5505
+ }>;
5506
+ /**
5507
+ * If set, TLS must be used to connect to this resource.
5508
+ */
5509
+ tlsRequired?: pulumi.Input<boolean>;
5510
+ /**
5511
+ * The username to authenticate with.
5512
+ */
5513
+ username?: pulumi.Input<string>;
5514
+ }
5207
5515
  export interface ResourceRedshift {
5208
5516
  /**
5209
5517
  * 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.
@@ -5927,6 +6235,14 @@ export interface ResourceSshCustomerKey {
5927
6235
  * The host to dial to initiate a connection from the egress node to this resource.
5928
6236
  */
5929
6237
  hostname: pulumi.Input<string>;
6238
+ /**
6239
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
6240
+ */
6241
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
6242
+ /**
6243
+ * The ID of the identity set to use for identity connections.
6244
+ */
6245
+ identitySetId?: pulumi.Input<string>;
5930
6246
  /**
5931
6247
  * Unique human-readable name of the Resource.
5932
6248
  */
@@ -6187,6 +6503,58 @@ export interface ResourceTeradata {
6187
6503
  username?: pulumi.Input<string>;
6188
6504
  }
6189
6505
  export interface ResourceTrino {
6506
+ /**
6507
+ * 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.
6508
+ */
6509
+ bindInterface?: pulumi.Input<string>;
6510
+ /**
6511
+ * A filter applied to the routing logic to pin datasource to nodes.
6512
+ */
6513
+ egressFilter?: pulumi.Input<string>;
6514
+ /**
6515
+ * The host to dial to initiate a connection from the egress node to this resource.
6516
+ */
6517
+ hostname: pulumi.Input<string>;
6518
+ /**
6519
+ * Unique human-readable name of the Resource.
6520
+ */
6521
+ name: pulumi.Input<string>;
6522
+ /**
6523
+ * The password to authenticate with.
6524
+ */
6525
+ password?: pulumi.Input<string>;
6526
+ /**
6527
+ * The port to dial to initiate a connection from the egress node to this resource.
6528
+ */
6529
+ port?: pulumi.Input<number>;
6530
+ /**
6531
+ * The local port used by clients to connect to this resource.
6532
+ */
6533
+ portOverride?: pulumi.Input<number>;
6534
+ /**
6535
+ * ID of the proxy cluster for this resource, if any.
6536
+ */
6537
+ proxyClusterId?: pulumi.Input<string>;
6538
+ /**
6539
+ * ID of the secret store containing credentials for this resource, if any.
6540
+ */
6541
+ secretStoreId?: pulumi.Input<string>;
6542
+ /**
6543
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
6544
+ */
6545
+ subdomain?: pulumi.Input<string>;
6546
+ /**
6547
+ * Tags is a map of key, value pairs.
6548
+ */
6549
+ tags?: pulumi.Input<{
6550
+ [key: string]: pulumi.Input<string>;
6551
+ }>;
6552
+ /**
6553
+ * The username to authenticate with.
6554
+ */
6555
+ username?: pulumi.Input<string>;
6556
+ }
6557
+ export interface ResourceVertica {
6190
6558
  /**
6191
6559
  * 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.
6192
6560
  */
@@ -6242,6 +6610,119 @@ export interface ResourceTrino {
6242
6610
  */
6243
6611
  username?: pulumi.Input<string>;
6244
6612
  }
6613
+ export interface SecretEngineActiveDirectory {
6614
+ /**
6615
+ * The default time-to-live duration of the password after it's read. Once the ttl has passed, a password will be rotated.
6616
+ */
6617
+ afterReadTtl?: pulumi.Input<string>;
6618
+ /**
6619
+ * Distinguished name of object to bind when performing user and group search. Example: cn=vault,ou=Users,dc=example,dc=com
6620
+ */
6621
+ binddn: pulumi.Input<string>;
6622
+ /**
6623
+ * Password to use along with binddn when performing user search.
6624
+ */
6625
+ bindpass: pulumi.Input<string>;
6626
+ /**
6627
+ * CA certificate to use when verifying LDAP server certificate, must be x509 PEM encoded.
6628
+ */
6629
+ certificate?: pulumi.Input<string>;
6630
+ /**
6631
+ * Timeout, in seconds, when attempting to connect to the LDAP server before trying the next URL in the configuration.
6632
+ */
6633
+ connectionTimeout?: pulumi.Input<number>;
6634
+ /**
6635
+ * If set to true this will prevent password change timestamp validation in Active Directory when validating credentials
6636
+ */
6637
+ doNotValidateTimestamps?: pulumi.Input<boolean>;
6638
+ /**
6639
+ * If true, skips LDAP server SSL certificate verification - insecure, use with caution!
6640
+ */
6641
+ insecureTls?: pulumi.Input<boolean>;
6642
+ /**
6643
+ * An interval of public/private key rotation for secret engine in days
6644
+ */
6645
+ keyRotationIntervalDays?: pulumi.Input<number>;
6646
+ /**
6647
+ * The maximum retry duration in case of automatic failure. On failed ttl rotation attempt it will be retried in an increasing intervals until it reaches max_backoff_duration
6648
+ */
6649
+ maxBackoffDuration?: pulumi.Input<string>;
6650
+ /**
6651
+ * Unique human-readable name of the Secret Engine.
6652
+ */
6653
+ name: pulumi.Input<string>;
6654
+ /**
6655
+ * Public key linked with a secret engine
6656
+ */
6657
+ publicKey?: pulumi.Input<string>;
6658
+ /**
6659
+ * Timeout, in seconds, for the connection when making requests against the server before returning back an error.
6660
+ */
6661
+ requestTimeout?: pulumi.Input<number>;
6662
+ /**
6663
+ * Backing secret store identifier
6664
+ */
6665
+ secretStoreId: pulumi.Input<string>;
6666
+ /**
6667
+ * Backing Secret Store root path where managed secrets are going to be stored
6668
+ */
6669
+ secretStoreRootPath: pulumi.Input<string>;
6670
+ /**
6671
+ * If true, issues a StartTLS command after establishing an unencrypted connection.
6672
+ */
6673
+ startTls?: pulumi.Input<boolean>;
6674
+ /**
6675
+ * Tags is a map of key, value pairs.
6676
+ */
6677
+ tags?: pulumi.Input<{
6678
+ [key: string]: pulumi.Input<string>;
6679
+ }>;
6680
+ /**
6681
+ * The default password time-to-live duration. Once the ttl has passed, a password will be rotated the next time it's requested.
6682
+ */
6683
+ ttl?: pulumi.Input<string>;
6684
+ /**
6685
+ * The domain (userPrincipalDomain) used to construct a UPN string for authentication.
6686
+ */
6687
+ upndomain?: pulumi.Input<string>;
6688
+ /**
6689
+ * The LDAP server to connect to.
6690
+ */
6691
+ url: pulumi.Input<string>;
6692
+ /**
6693
+ * Base DN under which to perform user search. Example: ou=Users,dc=example,dc=com
6694
+ * * key_value:
6695
+ */
6696
+ userdn?: pulumi.Input<string>;
6697
+ }
6698
+ export interface SecretEngineKeyValue {
6699
+ /**
6700
+ * An interval of public/private key rotation for secret engine in days
6701
+ */
6702
+ keyRotationIntervalDays?: pulumi.Input<number>;
6703
+ /**
6704
+ * Unique human-readable name of the Secret Engine.
6705
+ */
6706
+ name: pulumi.Input<string>;
6707
+ /**
6708
+ * Public key linked with a secret engine
6709
+ */
6710
+ publicKey?: pulumi.Input<string>;
6711
+ /**
6712
+ * Backing secret store identifier
6713
+ */
6714
+ secretStoreId: pulumi.Input<string>;
6715
+ /**
6716
+ * Backing Secret Store root path where managed secrets are going to be stored
6717
+ */
6718
+ secretStoreRootPath: pulumi.Input<string>;
6719
+ /**
6720
+ * Tags is a map of key, value pairs.
6721
+ */
6722
+ tags?: pulumi.Input<{
6723
+ [key: string]: pulumi.Input<string>;
6724
+ }>;
6725
+ }
6245
6726
  export interface SecretStoreActiveDirectoryStore {
6246
6727
  /**
6247
6728
  * Unique human-readable name of the SecretStore.