@pierskarsenbarg/sdm 1.12.0 → 1.13.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/types/input.d.ts CHANGED
@@ -152,6 +152,14 @@ export interface ResourceAks {
152
152
  * The key to authenticate TLS connections with.
153
153
  */
154
154
  clientKey?: pulumi.Input<string>;
155
+ /**
156
+ * If true, configures discovery of a cluster to be run from a node.
157
+ */
158
+ discoveryEnabled?: pulumi.Input<boolean>;
159
+ /**
160
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
161
+ */
162
+ discoveryUsername?: pulumi.Input<string>;
155
163
  /**
156
164
  * A filter applied to the routing logic to pin datasource to nodes.
157
165
  */
@@ -164,6 +172,14 @@ export interface ResourceAks {
164
172
  * The host to dial to initiate a connection from the egress node to this resource.
165
173
  */
166
174
  hostname: pulumi.Input<string>;
175
+ /**
176
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
177
+ */
178
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
179
+ /**
180
+ * The ID of the identity set to use for identity connections.
181
+ */
182
+ identitySetId?: pulumi.Input<string>;
167
183
  /**
168
184
  * Unique human-readable name of the Resource.
169
185
  */
@@ -176,14 +192,6 @@ export interface ResourceAks {
176
192
  * The local port used by clients to connect to this resource.
177
193
  */
178
194
  portOverride?: pulumi.Input<number>;
179
- /**
180
- * The ID of the remote identity group to use for remote identity connections.
181
- */
182
- remoteIdentityGroupId?: pulumi.Input<string>;
183
- /**
184
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
185
- */
186
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
187
195
  /**
188
196
  * ID of the secret store containing credentials for this resource, if any.
189
197
  */
@@ -256,6 +264,14 @@ export interface ResourceAksServiceAccount {
256
264
  * 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.
257
265
  */
258
266
  bindInterface?: pulumi.Input<string>;
267
+ /**
268
+ * If true, configures discovery of a cluster to be run from a node.
269
+ */
270
+ discoveryEnabled?: pulumi.Input<boolean>;
271
+ /**
272
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
273
+ */
274
+ discoveryUsername?: pulumi.Input<string>;
259
275
  /**
260
276
  * A filter applied to the routing logic to pin datasource to nodes.
261
277
  */
@@ -268,6 +284,14 @@ export interface ResourceAksServiceAccount {
268
284
  * The host to dial to initiate a connection from the egress node to this resource.
269
285
  */
270
286
  hostname: pulumi.Input<string>;
287
+ /**
288
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
289
+ */
290
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
291
+ /**
292
+ * The ID of the identity set to use for identity connections.
293
+ */
294
+ identitySetId?: pulumi.Input<string>;
271
295
  /**
272
296
  * Unique human-readable name of the Resource.
273
297
  */
@@ -280,14 +304,6 @@ export interface ResourceAksServiceAccount {
280
304
  * The local port used by clients to connect to this resource.
281
305
  */
282
306
  portOverride?: pulumi.Input<number>;
283
- /**
284
- * The ID of the remote identity group to use for remote identity connections.
285
- */
286
- remoteIdentityGroupId?: pulumi.Input<string>;
287
- /**
288
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
289
- */
290
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
291
307
  /**
292
308
  * ID of the secret store containing credentials for this resource, if any.
293
309
  */
@@ -430,6 +446,14 @@ export interface ResourceAmazonEks {
430
446
  * The name of the cluster to connect to.
431
447
  */
432
448
  clusterName: pulumi.Input<string>;
449
+ /**
450
+ * If true, configures discovery of a cluster to be run from a node.
451
+ */
452
+ discoveryEnabled?: pulumi.Input<boolean>;
453
+ /**
454
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
455
+ */
456
+ discoveryUsername?: pulumi.Input<string>;
433
457
  /**
434
458
  * A filter applied to the routing logic to pin datasource to nodes.
435
459
  */
@@ -442,6 +466,14 @@ export interface ResourceAmazonEks {
442
466
  * The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
443
467
  */
444
468
  healthcheckNamespace?: pulumi.Input<string>;
469
+ /**
470
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
471
+ */
472
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
473
+ /**
474
+ * The ID of the identity set to use for identity connections.
475
+ */
476
+ identitySetId?: pulumi.Input<string>;
445
477
  /**
446
478
  * Unique human-readable name of the Resource.
447
479
  */
@@ -454,14 +486,6 @@ export interface ResourceAmazonEks {
454
486
  * The AWS region to connect to.
455
487
  */
456
488
  region: pulumi.Input<string>;
457
- /**
458
- * The ID of the remote identity group to use for remote identity connections.
459
- */
460
- remoteIdentityGroupId?: pulumi.Input<string>;
461
- /**
462
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
463
- */
464
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
465
489
  /**
466
490
  * The role to assume after logging in.
467
491
  */
@@ -502,6 +526,14 @@ export interface ResourceAmazonEksInstanceProfile {
502
526
  * The name of the cluster to connect to.
503
527
  */
504
528
  clusterName: pulumi.Input<string>;
529
+ /**
530
+ * If true, configures discovery of a cluster to be run from a node.
531
+ */
532
+ discoveryEnabled?: pulumi.Input<boolean>;
533
+ /**
534
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
535
+ */
536
+ discoveryUsername?: pulumi.Input<string>;
505
537
  /**
506
538
  * A filter applied to the routing logic to pin datasource to nodes.
507
539
  */
@@ -514,6 +546,14 @@ export interface ResourceAmazonEksInstanceProfile {
514
546
  * The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.
515
547
  */
516
548
  healthcheckNamespace?: pulumi.Input<string>;
549
+ /**
550
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
551
+ */
552
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
553
+ /**
554
+ * The ID of the identity set to use for identity connections.
555
+ */
556
+ identitySetId?: pulumi.Input<string>;
517
557
  /**
518
558
  * Unique human-readable name of the Resource.
519
559
  */
@@ -526,14 +566,6 @@ export interface ResourceAmazonEksInstanceProfile {
526
566
  * The AWS region to connect to.
527
567
  */
528
568
  region: pulumi.Input<string>;
529
- /**
530
- * The ID of the remote identity group to use for remote identity connections.
531
- */
532
- remoteIdentityGroupId?: pulumi.Input<string>;
533
- /**
534
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
535
- */
536
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
537
569
  /**
538
570
  * The role to assume after logging in.
539
571
  */
@@ -594,14 +626,6 @@ export interface ResourceAmazonEksInstanceProfileUserImpersonation {
594
626
  * The AWS region to connect to.
595
627
  */
596
628
  region: pulumi.Input<string>;
597
- /**
598
- * The ID of the remote identity group to use for remote identity connections.
599
- */
600
- remoteIdentityGroupId?: pulumi.Input<string>;
601
- /**
602
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
603
- */
604
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
605
629
  /**
606
630
  * The role to assume after logging in.
607
631
  */
@@ -1098,6 +1122,14 @@ export interface ResourceAwsConsole {
1098
1122
  * If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
1099
1123
  */
1100
1124
  enableEnvVariables?: pulumi.Input<boolean>;
1125
+ /**
1126
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
1127
+ */
1128
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
1129
+ /**
1130
+ * The ID of the identity set to use for identity connections.
1131
+ */
1132
+ identitySetId?: pulumi.Input<string>;
1101
1133
  /**
1102
1134
  * Unique human-readable name of the Resource.
1103
1135
  */
@@ -1110,14 +1142,6 @@ export interface ResourceAwsConsole {
1110
1142
  * The AWS region to connect to.
1111
1143
  */
1112
1144
  region: pulumi.Input<string>;
1113
- /**
1114
- * The ID of the remote identity group to use for remote identity connections.
1115
- */
1116
- remoteIdentityGroupId?: pulumi.Input<string>;
1117
- /**
1118
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
1119
- */
1120
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
1121
1145
  /**
1122
1146
  * The role to assume after logging in.
1123
1147
  */
@@ -1158,6 +1182,14 @@ export interface ResourceAwsConsoleStaticKeyPair {
1158
1182
  * A filter applied to the routing logic to pin datasource to nodes.
1159
1183
  */
1160
1184
  egressFilter?: pulumi.Input<string>;
1185
+ /**
1186
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
1187
+ */
1188
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
1189
+ /**
1190
+ * The ID of the identity set to use for identity connections.
1191
+ */
1192
+ identitySetId?: pulumi.Input<string>;
1161
1193
  /**
1162
1194
  * Unique human-readable name of the Resource.
1163
1195
  */
@@ -1170,14 +1202,6 @@ export interface ResourceAwsConsoleStaticKeyPair {
1170
1202
  * The AWS region to connect to.
1171
1203
  */
1172
1204
  region: pulumi.Input<string>;
1173
- /**
1174
- * The ID of the remote identity group to use for remote identity connections.
1175
- */
1176
- remoteIdentityGroupId?: pulumi.Input<string>;
1177
- /**
1178
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
1179
- */
1180
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
1181
1205
  /**
1182
1206
  * The role to assume after logging in.
1183
1207
  */
@@ -2216,6 +2240,14 @@ export interface ResourceGoogleGke {
2216
2240
  * The CA to authenticate TLS connections with.
2217
2241
  */
2218
2242
  certificateAuthority?: pulumi.Input<string>;
2243
+ /**
2244
+ * If true, configures discovery of a cluster to be run from a node.
2245
+ */
2246
+ discoveryEnabled?: pulumi.Input<boolean>;
2247
+ /**
2248
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
2249
+ */
2250
+ discoveryUsername?: pulumi.Input<string>;
2219
2251
  /**
2220
2252
  * A filter applied to the routing logic to pin datasource to nodes.
2221
2253
  */
@@ -2229,21 +2261,21 @@ export interface ResourceGoogleGke {
2229
2261
  */
2230
2262
  healthcheckNamespace?: pulumi.Input<string>;
2231
2263
  /**
2232
- * Unique human-readable name of the Resource.
2264
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
2233
2265
  */
2234
- name: pulumi.Input<string>;
2266
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
2235
2267
  /**
2236
- * The local port used by clients to connect to this resource.
2268
+ * The ID of the identity set to use for identity connections.
2237
2269
  */
2238
- portOverride?: pulumi.Input<number>;
2270
+ identitySetId?: pulumi.Input<string>;
2239
2271
  /**
2240
- * The ID of the remote identity group to use for remote identity connections.
2272
+ * Unique human-readable name of the Resource.
2241
2273
  */
2242
- remoteIdentityGroupId?: pulumi.Input<string>;
2274
+ name: pulumi.Input<string>;
2243
2275
  /**
2244
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
2276
+ * The local port used by clients to connect to this resource.
2245
2277
  */
2246
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
2278
+ portOverride?: pulumi.Input<number>;
2247
2279
  /**
2248
2280
  * ID of the secret store containing credentials for this resource, if any.
2249
2281
  */
@@ -2543,6 +2575,14 @@ export interface ResourceKubernetes {
2543
2575
  * The key to authenticate TLS connections with.
2544
2576
  */
2545
2577
  clientKey?: pulumi.Input<string>;
2578
+ /**
2579
+ * If true, configures discovery of a cluster to be run from a node.
2580
+ */
2581
+ discoveryEnabled?: pulumi.Input<boolean>;
2582
+ /**
2583
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
2584
+ */
2585
+ discoveryUsername?: pulumi.Input<string>;
2546
2586
  /**
2547
2587
  * A filter applied to the routing logic to pin datasource to nodes.
2548
2588
  */
@@ -2555,6 +2595,14 @@ export interface ResourceKubernetes {
2555
2595
  * The host to dial to initiate a connection from the egress node to this resource.
2556
2596
  */
2557
2597
  hostname: pulumi.Input<string>;
2598
+ /**
2599
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
2600
+ */
2601
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
2602
+ /**
2603
+ * The ID of the identity set to use for identity connections.
2604
+ */
2605
+ identitySetId?: pulumi.Input<string>;
2558
2606
  /**
2559
2607
  * Unique human-readable name of the Resource.
2560
2608
  */
@@ -2567,14 +2615,6 @@ export interface ResourceKubernetes {
2567
2615
  * The local port used by clients to connect to this resource.
2568
2616
  */
2569
2617
  portOverride?: pulumi.Input<number>;
2570
- /**
2571
- * The ID of the remote identity group to use for remote identity connections.
2572
- */
2573
- remoteIdentityGroupId?: pulumi.Input<string>;
2574
- /**
2575
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
2576
- */
2577
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
2578
2618
  /**
2579
2619
  * ID of the secret store containing credentials for this resource, if any.
2580
2620
  */
@@ -2647,6 +2687,14 @@ export interface ResourceKubernetesServiceAccount {
2647
2687
  * 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.
2648
2688
  */
2649
2689
  bindInterface?: pulumi.Input<string>;
2690
+ /**
2691
+ * If true, configures discovery of a cluster to be run from a node.
2692
+ */
2693
+ discoveryEnabled?: pulumi.Input<boolean>;
2694
+ /**
2695
+ * If a cluster is configured for user impersonation, this is the user to impersonate when running discovery.
2696
+ */
2697
+ discoveryUsername?: pulumi.Input<string>;
2650
2698
  /**
2651
2699
  * A filter applied to the routing logic to pin datasource to nodes.
2652
2700
  */
@@ -2659,6 +2707,14 @@ export interface ResourceKubernetesServiceAccount {
2659
2707
  * The host to dial to initiate a connection from the egress node to this resource.
2660
2708
  */
2661
2709
  hostname: pulumi.Input<string>;
2710
+ /**
2711
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
2712
+ */
2713
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
2714
+ /**
2715
+ * The ID of the identity set to use for identity connections.
2716
+ */
2717
+ identitySetId?: pulumi.Input<string>;
2662
2718
  /**
2663
2719
  * Unique human-readable name of the Resource.
2664
2720
  */
@@ -2671,14 +2727,6 @@ export interface ResourceKubernetesServiceAccount {
2671
2727
  * The local port used by clients to connect to this resource.
2672
2728
  */
2673
2729
  portOverride?: pulumi.Input<number>;
2674
- /**
2675
- * The ID of the remote identity group to use for remote identity connections.
2676
- */
2677
- remoteIdentityGroupId?: pulumi.Input<string>;
2678
- /**
2679
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
2680
- */
2681
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
2682
2730
  /**
2683
2731
  * ID of the secret store containing credentials for this resource, if any.
2684
2732
  */
@@ -3897,6 +3945,14 @@ export interface ResourceRdpCert {
3897
3945
  * The host to dial to initiate a connection from the egress node to this resource.
3898
3946
  */
3899
3947
  hostname: pulumi.Input<string>;
3948
+ /**
3949
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
3950
+ */
3951
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
3952
+ /**
3953
+ * The ID of the identity set to use for identity connections.
3954
+ */
3955
+ identitySetId?: pulumi.Input<string>;
3900
3956
  /**
3901
3957
  * Unique human-readable name of the Resource.
3902
3958
  */
@@ -3909,14 +3965,6 @@ export interface ResourceRdpCert {
3909
3965
  * The local port used by clients to connect to this resource.
3910
3966
  */
3911
3967
  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
3968
  /**
3921
3969
  * ID of the secret store containing credentials for this resource, if any.
3922
3970
  */
@@ -4542,6 +4590,14 @@ export interface ResourceSshCert {
4542
4590
  * The host to dial to initiate a connection from the egress node to this resource.
4543
4591
  */
4544
4592
  hostname: pulumi.Input<string>;
4593
+ /**
4594
+ * The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
4595
+ */
4596
+ identityAliasHealthcheckUsername?: pulumi.Input<string>;
4597
+ /**
4598
+ * The ID of the identity set to use for identity connections.
4599
+ */
4600
+ identitySetId?: pulumi.Input<string>;
4545
4601
  /**
4546
4602
  * The key type to use e.g. rsa-2048 or ed25519
4547
4603
  */
@@ -4562,14 +4618,6 @@ export interface ResourceSshCert {
4562
4618
  * The local port used by clients to connect to this resource.
4563
4619
  */
4564
4620
  portOverride?: pulumi.Input<number>;
4565
- /**
4566
- * The ID of the remote identity group to use for remote identity connections.
4567
- */
4568
- remoteIdentityGroupId?: pulumi.Input<string>;
4569
- /**
4570
- * The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
4571
- */
4572
- remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
4573
4621
  /**
4574
4622
  * ID of the secret store containing credentials for this resource, if any.
4575
4623
  */
@@ -5039,7 +5087,7 @@ export interface SecretStoreGcpStore {
5039
5087
  [key: string]: pulumi.Input<string>;
5040
5088
  }>;
5041
5089
  }
5042
- export interface SecretStoreKeyfactorX509Store {
5090
+ export interface SecretStoreKeyfactorSshStore {
5043
5091
  /**
5044
5092
  * Path to the root CA that signed the certificate passed to the client for HTTPS connection. This is not required if the CA is trusted by the host operating system. This should be a PEM formatted certificate, and doesn't necessarily have to be the CA that signed CertificateFile.
5045
5093
  */
@@ -5073,9 +5121,53 @@ export interface SecretStoreKeyfactorX509Store {
5073
5121
  */
5074
5122
  keyFilePath?: pulumi.Input<string>;
5075
5123
  /**
5076
- * optional environment variable housing the password that is used to decrypt the key file.
5124
+ * Unique human-readable name of the SecretStore.
5125
+ */
5126
+ name: pulumi.Input<string>;
5127
+ /**
5128
+ * The URL of the Vault to target
5129
+ */
5130
+ serverAddress: pulumi.Input<string>;
5131
+ /**
5132
+ * Tags is a map of key, value pairs.
5133
+ */
5134
+ tags?: pulumi.Input<{
5135
+ [key: string]: pulumi.Input<string>;
5136
+ }>;
5137
+ }
5138
+ export interface SecretStoreKeyfactorX509Store {
5139
+ /**
5140
+ * Path to the root CA that signed the certificate passed to the client for HTTPS connection. This is not required if the CA is trusted by the host operating system. This should be a PEM formatted certificate, and doesn't necessarily have to be the CA that signed CertificateFile.
5141
+ */
5142
+ caFilePath?: pulumi.Input<string>;
5143
+ /**
5144
+ * Path to client certificate in PEM format. This certificate must contain a client certificate that is recognized by the EJBCA instance represented by Hostname. This PEM file may also contain the private key associated with the certificate, but KeyFile can also be set to configure the private key.
5145
+ */
5146
+ certificateFilePath: pulumi.Input<string>;
5147
+ /**
5148
+ * Name of EJBCA certificate authority that will enroll CSR.
5149
+ */
5150
+ defaultCertificateAuthorityName: pulumi.Input<string>;
5151
+ /**
5152
+ * Certificate profile name that EJBCA will enroll the CSR with.
5153
+ */
5154
+ defaultCertificateProfileName: pulumi.Input<string>;
5155
+ /**
5156
+ * End entity profile that EJBCA will enroll the CSR with.
5157
+ */
5158
+ defaultEndEntityProfileName: pulumi.Input<string>;
5159
+ /**
5160
+ * code used by EJBCA during enrollment. May be left blank if no code is required.
5077
5161
  */
5078
- keyPasswordEnvVar?: pulumi.Input<string>;
5162
+ enrollmentCodeEnvVar?: pulumi.Input<string>;
5163
+ /**
5164
+ * username that used by the EJBCA during enrollment. This can be left out. If so, the username must be auto-generated on the Keyfactor side.
5165
+ */
5166
+ enrollmentUsernameEnvVar?: pulumi.Input<string>;
5167
+ /**
5168
+ * Path to private key in PEM format. This file should contain the private key associated with the client certificate configured in CertificateFile.
5169
+ */
5170
+ keyFilePath?: pulumi.Input<string>;
5079
5171
  /**
5080
5172
  * Unique human-readable name of the SecretStore.
5081
5173
  */
@@ -5175,6 +5267,46 @@ export interface SecretStoreVaultApproleCertX509 {
5175
5267
  [key: string]: pulumi.Input<string>;
5176
5268
  }>;
5177
5269
  }
5270
+ export interface SecretStoreVaultAwsEc2 {
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
+ * Tags is a map of key, value pairs.
5285
+ */
5286
+ tags?: pulumi.Input<{
5287
+ [key: string]: pulumi.Input<string>;
5288
+ }>;
5289
+ }
5290
+ export interface SecretStoreVaultAwsIam {
5291
+ /**
5292
+ * Unique human-readable name of the SecretStore.
5293
+ */
5294
+ name: pulumi.Input<string>;
5295
+ /**
5296
+ * The namespace to make requests within
5297
+ */
5298
+ namespace?: pulumi.Input<string>;
5299
+ /**
5300
+ * The URL of the Vault to target
5301
+ */
5302
+ serverAddress: pulumi.Input<string>;
5303
+ /**
5304
+ * Tags is a map of key, value pairs.
5305
+ */
5306
+ tags?: pulumi.Input<{
5307
+ [key: string]: pulumi.Input<string>;
5308
+ }>;
5309
+ }
5178
5310
  export interface SecretStoreVaultTls {
5179
5311
  /**
5180
5312
  * A path to a CA file accessible by a Node