@pierskarsenbarg/sdm 0.3.0 → 0.4.2
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.js +16 -16
- package/account.js.map +1 -1
- package/accountAttachment.js +22 -22
- package/accountAttachment.js.map +1 -1
- package/getAccount.d.ts +12 -0
- package/getAccount.js +1 -0
- package/getAccount.js.map +1 -1
- package/getRole.d.ts +4 -0
- package/getRole.js.map +1 -1
- package/getSecretStore.d.ts +1 -1
- package/getSecretStore.js +1 -1
- package/node.js +16 -16
- package/node.js.map +1 -1
- package/package.json +3 -3
- package/package.json.bak +1 -1
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/remoteIdentity.js +22 -22
- package/remoteIdentity.js.map +1 -1
- package/resource.d.ts +18 -9
- package/resource.js +28 -22
- package/resource.js.map +1 -1
- package/role.d.ts +8 -0
- package/role.js +20 -18
- package/role.js.map +1 -1
- package/scripts/install-pulumi-plugin.js +1 -1
- package/secretStore.d.ts +3 -18
- package/secretStore.js +24 -22
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +463 -3
- package/types/output.d.ts +938 -14
- package/utilities.js +1 -1
- package/utilities.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface AccountUser {
|
|
|
21
21
|
* The User's email address. Must be unique.
|
|
22
22
|
*/
|
|
23
23
|
email: pulumi.Input<string>;
|
|
24
|
+
/**
|
|
25
|
+
* External ID is an alternative unique ID this user is represented by within an external service.
|
|
26
|
+
*/
|
|
27
|
+
externalId?: pulumi.Input<string>;
|
|
24
28
|
/**
|
|
25
29
|
* The User's first name.
|
|
26
30
|
*/
|
|
@@ -29,6 +33,14 @@ export interface AccountUser {
|
|
|
29
33
|
* The User's last name.
|
|
30
34
|
*/
|
|
31
35
|
lastName: pulumi.Input<string>;
|
|
36
|
+
/**
|
|
37
|
+
* Managed By is a read only field for what service manages this user, e.g. StrongDM, Okta, Azure.
|
|
38
|
+
*/
|
|
39
|
+
managedBy?: pulumi.Input<string>;
|
|
40
|
+
/**
|
|
41
|
+
* PermissionLevel is a read only field for the user's permission level e.g. admin, DBA, user.
|
|
42
|
+
*/
|
|
43
|
+
permissionLevel?: pulumi.Input<string>;
|
|
32
44
|
/**
|
|
33
45
|
* The User's suspended state.
|
|
34
46
|
*/
|
|
@@ -45,6 +57,10 @@ export interface NodeGateway {
|
|
|
45
57
|
* 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".
|
|
46
58
|
*/
|
|
47
59
|
bindAddress?: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
62
|
+
*/
|
|
63
|
+
device?: pulumi.Input<string>;
|
|
48
64
|
/**
|
|
49
65
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
50
66
|
*/
|
|
@@ -53,6 +69,10 @@ export interface NodeGateway {
|
|
|
53
69
|
* The public hostname/port tuple at which the gateway will be accessible to clients.
|
|
54
70
|
*/
|
|
55
71
|
listenAddress: pulumi.Input<string>;
|
|
72
|
+
/**
|
|
73
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
74
|
+
*/
|
|
75
|
+
location?: pulumi.Input<string>;
|
|
56
76
|
/**
|
|
57
77
|
* Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
|
|
58
78
|
*/
|
|
@@ -64,12 +84,24 @@ export interface NodeGateway {
|
|
|
64
84
|
[key: string]: pulumi.Input<string>;
|
|
65
85
|
}>;
|
|
66
86
|
token?: pulumi.Input<string>;
|
|
87
|
+
/**
|
|
88
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
89
|
+
*/
|
|
90
|
+
version?: pulumi.Input<string>;
|
|
67
91
|
}
|
|
68
92
|
export interface NodeRelay {
|
|
93
|
+
/**
|
|
94
|
+
* Device is a read only device name uploaded by the gateway process when it comes online.
|
|
95
|
+
*/
|
|
96
|
+
device?: pulumi.Input<string>;
|
|
69
97
|
/**
|
|
70
98
|
* GatewayFilter can be used to restrict the peering between relays and gateways.
|
|
71
99
|
*/
|
|
72
100
|
gatewayFilter?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* Location is a read only network location uploaded by the gateway process when it comes online.
|
|
103
|
+
*/
|
|
104
|
+
location?: pulumi.Input<string>;
|
|
73
105
|
/**
|
|
74
106
|
* Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
|
|
75
107
|
*/
|
|
@@ -81,6 +113,10 @@ export interface NodeRelay {
|
|
|
81
113
|
[key: string]: pulumi.Input<string>;
|
|
82
114
|
}>;
|
|
83
115
|
token?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Version is a read only sdm binary version uploaded by the gateway process when it comes online.
|
|
118
|
+
*/
|
|
119
|
+
version?: pulumi.Input<string>;
|
|
84
120
|
}
|
|
85
121
|
export interface ResourceAks {
|
|
86
122
|
/**
|
|
@@ -117,6 +153,10 @@ export interface ResourceAks {
|
|
|
117
153
|
* ID of the secret store containing credentials for this resource, if any.
|
|
118
154
|
*/
|
|
119
155
|
secretStoreId?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
158
|
+
*/
|
|
159
|
+
subdomain?: pulumi.Input<string>;
|
|
120
160
|
/**
|
|
121
161
|
* Tags is a map of key, value pairs.
|
|
122
162
|
*/
|
|
@@ -153,6 +193,10 @@ export interface ResourceAksBasicAuth {
|
|
|
153
193
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
154
194
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
155
195
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
198
|
+
*/
|
|
199
|
+
subdomain?: pulumi.Input<string>;
|
|
156
200
|
/**
|
|
157
201
|
* Tags is a map of key, value pairs.
|
|
158
202
|
*/
|
|
@@ -192,6 +236,10 @@ export interface ResourceAksServiceAccount {
|
|
|
192
236
|
*/
|
|
193
237
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
194
238
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
239
|
+
/**
|
|
240
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
241
|
+
*/
|
|
242
|
+
subdomain?: pulumi.Input<string>;
|
|
195
243
|
/**
|
|
196
244
|
* Tags is a map of key, value pairs.
|
|
197
245
|
*/
|
|
@@ -229,6 +277,10 @@ export interface ResourceAksServiceAccountUserImpersonation {
|
|
|
229
277
|
*/
|
|
230
278
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
231
279
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
280
|
+
/**
|
|
281
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
282
|
+
*/
|
|
283
|
+
subdomain?: pulumi.Input<string>;
|
|
232
284
|
/**
|
|
233
285
|
* Tags is a map of key, value pairs.
|
|
234
286
|
*/
|
|
@@ -270,6 +322,10 @@ export interface ResourceAksUserImpersonation {
|
|
|
270
322
|
* ID of the secret store containing credentials for this resource, if any.
|
|
271
323
|
*/
|
|
272
324
|
secretStoreId?: pulumi.Input<string>;
|
|
325
|
+
/**
|
|
326
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
327
|
+
*/
|
|
328
|
+
subdomain?: pulumi.Input<string>;
|
|
273
329
|
/**
|
|
274
330
|
* Tags is a map of key, value pairs.
|
|
275
331
|
*/
|
|
@@ -318,6 +374,102 @@ export interface ResourceAmazonEks {
|
|
|
318
374
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
319
375
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
320
376
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
377
|
+
/**
|
|
378
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
379
|
+
*/
|
|
380
|
+
subdomain?: pulumi.Input<string>;
|
|
381
|
+
/**
|
|
382
|
+
* Tags is a map of key, value pairs.
|
|
383
|
+
*/
|
|
384
|
+
tags?: pulumi.Input<{
|
|
385
|
+
[key: string]: pulumi.Input<string>;
|
|
386
|
+
}>;
|
|
387
|
+
}
|
|
388
|
+
export interface ResourceAmazonEksInstanceProfile {
|
|
389
|
+
/**
|
|
390
|
+
* Bind interface
|
|
391
|
+
*/
|
|
392
|
+
bindInterface?: pulumi.Input<string>;
|
|
393
|
+
certificateAuthority?: pulumi.Input<string>;
|
|
394
|
+
clusterName: pulumi.Input<string>;
|
|
395
|
+
/**
|
|
396
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
397
|
+
*/
|
|
398
|
+
egressFilter?: pulumi.Input<string>;
|
|
399
|
+
endpoint: pulumi.Input<string>;
|
|
400
|
+
/**
|
|
401
|
+
* 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.
|
|
402
|
+
*/
|
|
403
|
+
healthcheckNamespace?: pulumi.Input<string>;
|
|
404
|
+
/**
|
|
405
|
+
* Unique human-readable name of the Resource.
|
|
406
|
+
*/
|
|
407
|
+
name: pulumi.Input<string>;
|
|
408
|
+
region: pulumi.Input<string>;
|
|
409
|
+
remoteIdentityGroupId?: pulumi.Input<string>;
|
|
410
|
+
remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
|
|
411
|
+
roleArn?: pulumi.Input<string>;
|
|
412
|
+
roleExternalId?: pulumi.Input<string>;
|
|
413
|
+
secretStoreCertificateAuthorityKey?: pulumi.Input<string>;
|
|
414
|
+
secretStoreCertificateAuthorityPath?: pulumi.Input<string>;
|
|
415
|
+
/**
|
|
416
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
417
|
+
*/
|
|
418
|
+
secretStoreId?: pulumi.Input<string>;
|
|
419
|
+
secretStoreRoleArnKey?: pulumi.Input<string>;
|
|
420
|
+
secretStoreRoleArnPath?: pulumi.Input<string>;
|
|
421
|
+
secretStoreRoleExternalIdKey?: pulumi.Input<string>;
|
|
422
|
+
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
423
|
+
/**
|
|
424
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
425
|
+
*/
|
|
426
|
+
subdomain?: pulumi.Input<string>;
|
|
427
|
+
/**
|
|
428
|
+
* Tags is a map of key, value pairs.
|
|
429
|
+
*/
|
|
430
|
+
tags?: pulumi.Input<{
|
|
431
|
+
[key: string]: pulumi.Input<string>;
|
|
432
|
+
}>;
|
|
433
|
+
}
|
|
434
|
+
export interface ResourceAmazonEksInstanceProfileUserImpersonation {
|
|
435
|
+
/**
|
|
436
|
+
* Bind interface
|
|
437
|
+
*/
|
|
438
|
+
bindInterface?: pulumi.Input<string>;
|
|
439
|
+
certificateAuthority?: pulumi.Input<string>;
|
|
440
|
+
clusterName: pulumi.Input<string>;
|
|
441
|
+
/**
|
|
442
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
443
|
+
*/
|
|
444
|
+
egressFilter?: pulumi.Input<string>;
|
|
445
|
+
endpoint: pulumi.Input<string>;
|
|
446
|
+
/**
|
|
447
|
+
* 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.
|
|
448
|
+
*/
|
|
449
|
+
healthcheckNamespace?: pulumi.Input<string>;
|
|
450
|
+
/**
|
|
451
|
+
* Unique human-readable name of the Resource.
|
|
452
|
+
*/
|
|
453
|
+
name: pulumi.Input<string>;
|
|
454
|
+
region: pulumi.Input<string>;
|
|
455
|
+
remoteIdentityGroupId?: pulumi.Input<string>;
|
|
456
|
+
remoteIdentityHealthcheckUsername?: pulumi.Input<string>;
|
|
457
|
+
roleArn?: pulumi.Input<string>;
|
|
458
|
+
roleExternalId?: pulumi.Input<string>;
|
|
459
|
+
secretStoreCertificateAuthorityKey?: pulumi.Input<string>;
|
|
460
|
+
secretStoreCertificateAuthorityPath?: pulumi.Input<string>;
|
|
461
|
+
/**
|
|
462
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
463
|
+
*/
|
|
464
|
+
secretStoreId?: pulumi.Input<string>;
|
|
465
|
+
secretStoreRoleArnKey?: pulumi.Input<string>;
|
|
466
|
+
secretStoreRoleArnPath?: pulumi.Input<string>;
|
|
467
|
+
secretStoreRoleExternalIdKey?: pulumi.Input<string>;
|
|
468
|
+
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
469
|
+
/**
|
|
470
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
471
|
+
*/
|
|
472
|
+
subdomain?: pulumi.Input<string>;
|
|
321
473
|
/**
|
|
322
474
|
* Tags is a map of key, value pairs.
|
|
323
475
|
*/
|
|
@@ -364,6 +516,10 @@ export interface ResourceAmazonEksUserImpersonation {
|
|
|
364
516
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
365
517
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
366
518
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
519
|
+
/**
|
|
520
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
521
|
+
*/
|
|
522
|
+
subdomain?: pulumi.Input<string>;
|
|
367
523
|
/**
|
|
368
524
|
* Tags is a map of key, value pairs.
|
|
369
525
|
*/
|
|
@@ -403,6 +559,10 @@ export interface ResourceAmazonEs {
|
|
|
403
559
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
404
560
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
405
561
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
562
|
+
/**
|
|
563
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
564
|
+
*/
|
|
565
|
+
subdomain?: pulumi.Input<string>;
|
|
406
566
|
/**
|
|
407
567
|
* Tags is a map of key, value pairs.
|
|
408
568
|
*/
|
|
@@ -435,6 +595,10 @@ export interface ResourceAmazonmqAmqp091 {
|
|
|
435
595
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
436
596
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
437
597
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
598
|
+
/**
|
|
599
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
600
|
+
*/
|
|
601
|
+
subdomain?: pulumi.Input<string>;
|
|
438
602
|
/**
|
|
439
603
|
* Tags is a map of key, value pairs.
|
|
440
604
|
*/
|
|
@@ -476,6 +640,10 @@ export interface ResourceAthena {
|
|
|
476
640
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
477
641
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
478
642
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
643
|
+
/**
|
|
644
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
645
|
+
*/
|
|
646
|
+
subdomain?: pulumi.Input<string>;
|
|
479
647
|
/**
|
|
480
648
|
* Tags is a map of key, value pairs.
|
|
481
649
|
*/
|
|
@@ -509,6 +677,10 @@ export interface ResourceAuroraMysql {
|
|
|
509
677
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
510
678
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
511
679
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
680
|
+
/**
|
|
681
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
682
|
+
*/
|
|
683
|
+
subdomain?: pulumi.Input<string>;
|
|
512
684
|
/**
|
|
513
685
|
* Tags is a map of key, value pairs.
|
|
514
686
|
*/
|
|
@@ -544,6 +716,10 @@ export interface ResourceAuroraPostgres {
|
|
|
544
716
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
545
717
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
546
718
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
719
|
+
/**
|
|
720
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
721
|
+
*/
|
|
722
|
+
subdomain?: pulumi.Input<string>;
|
|
547
723
|
/**
|
|
548
724
|
* Tags is a map of key, value pairs.
|
|
549
725
|
*/
|
|
@@ -618,6 +794,9 @@ export interface ResourceAwsConsole {
|
|
|
618
794
|
secretStoreRoleExternalIdKey?: pulumi.Input<string>;
|
|
619
795
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
620
796
|
sessionExpiry?: pulumi.Input<number>;
|
|
797
|
+
/**
|
|
798
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
799
|
+
*/
|
|
621
800
|
subdomain: pulumi.Input<string>;
|
|
622
801
|
/**
|
|
623
802
|
* Tags is a map of key, value pairs.
|
|
@@ -660,6 +839,9 @@ export interface ResourceAwsConsoleStaticKeyPair {
|
|
|
660
839
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
661
840
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
662
841
|
sessionExpiry?: pulumi.Input<number>;
|
|
842
|
+
/**
|
|
843
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
844
|
+
*/
|
|
663
845
|
subdomain: pulumi.Input<string>;
|
|
664
846
|
/**
|
|
665
847
|
* Tags is a map of key, value pairs.
|
|
@@ -692,7 +874,7 @@ export interface ResourceAzure {
|
|
|
692
874
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
693
875
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
694
876
|
/**
|
|
695
|
-
* *
|
|
877
|
+
* * azure_mysql:
|
|
696
878
|
*/
|
|
697
879
|
secretStoreTenantIdKey?: pulumi.Input<string>;
|
|
698
880
|
secretStoreTenantIdPath?: pulumi.Input<string>;
|
|
@@ -728,7 +910,7 @@ export interface ResourceAzureCertificate {
|
|
|
728
910
|
*/
|
|
729
911
|
secretStoreId?: pulumi.Input<string>;
|
|
730
912
|
/**
|
|
731
|
-
* *
|
|
913
|
+
* * azure_mysql:
|
|
732
914
|
*/
|
|
733
915
|
secretStoreTenantIdKey?: pulumi.Input<string>;
|
|
734
916
|
secretStoreTenantIdPath?: pulumi.Input<string>;
|
|
@@ -740,6 +922,44 @@ export interface ResourceAzureCertificate {
|
|
|
740
922
|
}>;
|
|
741
923
|
tenantId?: pulumi.Input<string>;
|
|
742
924
|
}
|
|
925
|
+
export interface ResourceAzureMysql {
|
|
926
|
+
/**
|
|
927
|
+
* Bind interface
|
|
928
|
+
*/
|
|
929
|
+
bindInterface?: pulumi.Input<string>;
|
|
930
|
+
database: pulumi.Input<string>;
|
|
931
|
+
/**
|
|
932
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
933
|
+
*/
|
|
934
|
+
egressFilter?: pulumi.Input<string>;
|
|
935
|
+
hostname: pulumi.Input<string>;
|
|
936
|
+
/**
|
|
937
|
+
* Unique human-readable name of the Resource.
|
|
938
|
+
*/
|
|
939
|
+
name: pulumi.Input<string>;
|
|
940
|
+
password?: pulumi.Input<string>;
|
|
941
|
+
port?: pulumi.Input<number>;
|
|
942
|
+
portOverride?: pulumi.Input<number>;
|
|
943
|
+
/**
|
|
944
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
945
|
+
*/
|
|
946
|
+
secretStoreId?: pulumi.Input<string>;
|
|
947
|
+
secretStorePasswordKey?: pulumi.Input<string>;
|
|
948
|
+
secretStorePasswordPath?: pulumi.Input<string>;
|
|
949
|
+
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
950
|
+
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
951
|
+
/**
|
|
952
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
953
|
+
*/
|
|
954
|
+
subdomain?: pulumi.Input<string>;
|
|
955
|
+
/**
|
|
956
|
+
* Tags is a map of key, value pairs.
|
|
957
|
+
*/
|
|
958
|
+
tags?: pulumi.Input<{
|
|
959
|
+
[key: string]: pulumi.Input<string>;
|
|
960
|
+
}>;
|
|
961
|
+
username?: pulumi.Input<string>;
|
|
962
|
+
}
|
|
743
963
|
export interface ResourceAzurePostgres {
|
|
744
964
|
/**
|
|
745
965
|
* Bind interface
|
|
@@ -767,6 +987,10 @@ export interface ResourceAzurePostgres {
|
|
|
767
987
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
768
988
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
769
989
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
990
|
+
/**
|
|
991
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
992
|
+
*/
|
|
993
|
+
subdomain?: pulumi.Input<string>;
|
|
770
994
|
/**
|
|
771
995
|
* Tags is a map of key, value pairs.
|
|
772
996
|
*/
|
|
@@ -798,6 +1022,10 @@ export interface ResourceBigQuery {
|
|
|
798
1022
|
secretStoreId?: pulumi.Input<string>;
|
|
799
1023
|
secretStorePrivateKeyKey?: pulumi.Input<string>;
|
|
800
1024
|
secretStorePrivateKeyPath?: pulumi.Input<string>;
|
|
1025
|
+
/**
|
|
1026
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1027
|
+
*/
|
|
1028
|
+
subdomain?: pulumi.Input<string>;
|
|
801
1029
|
/**
|
|
802
1030
|
* Tags is a map of key, value pairs.
|
|
803
1031
|
*/
|
|
@@ -831,6 +1059,10 @@ export interface ResourceCassandra {
|
|
|
831
1059
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
832
1060
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
833
1061
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1062
|
+
/**
|
|
1063
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1064
|
+
*/
|
|
1065
|
+
subdomain?: pulumi.Input<string>;
|
|
834
1066
|
/**
|
|
835
1067
|
* Tags is a map of key, value pairs.
|
|
836
1068
|
*/
|
|
@@ -867,6 +1099,10 @@ export interface ResourceCitus {
|
|
|
867
1099
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
868
1100
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
869
1101
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1102
|
+
/**
|
|
1103
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1104
|
+
*/
|
|
1105
|
+
subdomain?: pulumi.Input<string>;
|
|
870
1106
|
/**
|
|
871
1107
|
* Tags is a map of key, value pairs.
|
|
872
1108
|
*/
|
|
@@ -901,6 +1137,10 @@ export interface ResourceClustrix {
|
|
|
901
1137
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
902
1138
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
903
1139
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1140
|
+
/**
|
|
1141
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1142
|
+
*/
|
|
1143
|
+
subdomain?: pulumi.Input<string>;
|
|
904
1144
|
/**
|
|
905
1145
|
* Tags is a map of key, value pairs.
|
|
906
1146
|
*/
|
|
@@ -936,6 +1176,10 @@ export interface ResourceCockroach {
|
|
|
936
1176
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
937
1177
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
938
1178
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1179
|
+
/**
|
|
1180
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1181
|
+
*/
|
|
1182
|
+
subdomain?: pulumi.Input<string>;
|
|
939
1183
|
/**
|
|
940
1184
|
* Tags is a map of key, value pairs.
|
|
941
1185
|
*/
|
|
@@ -969,6 +1213,10 @@ export interface ResourceDb2I {
|
|
|
969
1213
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
970
1214
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
971
1215
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1216
|
+
/**
|
|
1217
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1218
|
+
*/
|
|
1219
|
+
subdomain?: pulumi.Input<string>;
|
|
972
1220
|
/**
|
|
973
1221
|
* Tags is a map of key, value pairs.
|
|
974
1222
|
*/
|
|
@@ -1004,6 +1252,10 @@ export interface ResourceDb2Luw {
|
|
|
1004
1252
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1005
1253
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1006
1254
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1255
|
+
/**
|
|
1256
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1257
|
+
*/
|
|
1258
|
+
subdomain?: pulumi.Input<string>;
|
|
1007
1259
|
/**
|
|
1008
1260
|
* Tags is a map of key, value pairs.
|
|
1009
1261
|
*/
|
|
@@ -1038,6 +1290,10 @@ export interface ResourceDocumentDbHost {
|
|
|
1038
1290
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1039
1291
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1040
1292
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1293
|
+
/**
|
|
1294
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1295
|
+
*/
|
|
1296
|
+
subdomain?: pulumi.Input<string>;
|
|
1041
1297
|
/**
|
|
1042
1298
|
* Tags is a map of key, value pairs.
|
|
1043
1299
|
*/
|
|
@@ -1073,6 +1329,10 @@ export interface ResourceDocumentDbReplicaSet {
|
|
|
1073
1329
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1074
1330
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1075
1331
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1332
|
+
/**
|
|
1333
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1334
|
+
*/
|
|
1335
|
+
subdomain?: pulumi.Input<string>;
|
|
1076
1336
|
/**
|
|
1077
1337
|
* Tags is a map of key, value pairs.
|
|
1078
1338
|
*/
|
|
@@ -1106,6 +1366,10 @@ export interface ResourceDruid {
|
|
|
1106
1366
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1107
1367
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1108
1368
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1369
|
+
/**
|
|
1370
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1371
|
+
*/
|
|
1372
|
+
subdomain?: pulumi.Input<string>;
|
|
1109
1373
|
/**
|
|
1110
1374
|
* Tags is a map of key, value pairs.
|
|
1111
1375
|
*/
|
|
@@ -1146,6 +1410,10 @@ export interface ResourceDynamoDb {
|
|
|
1146
1410
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
1147
1411
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
1148
1412
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
1413
|
+
/**
|
|
1414
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1415
|
+
*/
|
|
1416
|
+
subdomain?: pulumi.Input<string>;
|
|
1149
1417
|
/**
|
|
1150
1418
|
* Tags is a map of key, value pairs.
|
|
1151
1419
|
*/
|
|
@@ -1178,6 +1446,10 @@ export interface ResourceElastic {
|
|
|
1178
1446
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1179
1447
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1180
1448
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1449
|
+
/**
|
|
1450
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1451
|
+
*/
|
|
1452
|
+
subdomain?: pulumi.Input<string>;
|
|
1181
1453
|
/**
|
|
1182
1454
|
* Tags is a map of key, value pairs.
|
|
1183
1455
|
*/
|
|
@@ -1210,6 +1482,12 @@ export interface ResourceElasticacheRedis {
|
|
|
1210
1482
|
secretStoreId?: pulumi.Input<string>;
|
|
1211
1483
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
1212
1484
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1485
|
+
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1486
|
+
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1487
|
+
/**
|
|
1488
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1489
|
+
*/
|
|
1490
|
+
subdomain?: pulumi.Input<string>;
|
|
1213
1491
|
/**
|
|
1214
1492
|
* Tags is a map of key, value pairs.
|
|
1215
1493
|
*/
|
|
@@ -1217,6 +1495,7 @@ export interface ResourceElasticacheRedis {
|
|
|
1217
1495
|
[key: string]: pulumi.Input<string>;
|
|
1218
1496
|
}>;
|
|
1219
1497
|
tlsRequired?: pulumi.Input<boolean>;
|
|
1498
|
+
username?: pulumi.Input<string>;
|
|
1220
1499
|
}
|
|
1221
1500
|
export interface ResourceGcp {
|
|
1222
1501
|
/**
|
|
@@ -1276,6 +1555,10 @@ export interface ResourceGoogleGke {
|
|
|
1276
1555
|
secretStoreServiceAccountKeyKey?: pulumi.Input<string>;
|
|
1277
1556
|
secretStoreServiceAccountKeyPath?: pulumi.Input<string>;
|
|
1278
1557
|
serviceAccountKey?: pulumi.Input<string>;
|
|
1558
|
+
/**
|
|
1559
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1560
|
+
*/
|
|
1561
|
+
subdomain?: pulumi.Input<string>;
|
|
1279
1562
|
/**
|
|
1280
1563
|
* Tags is a map of key, value pairs.
|
|
1281
1564
|
*/
|
|
@@ -1311,6 +1594,10 @@ export interface ResourceGoogleGkeUserImpersonation {
|
|
|
1311
1594
|
secretStoreServiceAccountKeyKey?: pulumi.Input<string>;
|
|
1312
1595
|
secretStoreServiceAccountKeyPath?: pulumi.Input<string>;
|
|
1313
1596
|
serviceAccountKey?: pulumi.Input<string>;
|
|
1597
|
+
/**
|
|
1598
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1599
|
+
*/
|
|
1600
|
+
subdomain?: pulumi.Input<string>;
|
|
1314
1601
|
/**
|
|
1315
1602
|
* Tags is a map of key, value pairs.
|
|
1316
1603
|
*/
|
|
@@ -1345,6 +1632,10 @@ export interface ResourceGreenplum {
|
|
|
1345
1632
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1346
1633
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1347
1634
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1635
|
+
/**
|
|
1636
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1637
|
+
*/
|
|
1638
|
+
subdomain?: pulumi.Input<string>;
|
|
1348
1639
|
/**
|
|
1349
1640
|
* Tags is a map of key, value pairs.
|
|
1350
1641
|
*/
|
|
@@ -1377,6 +1668,9 @@ export interface ResourceHttpAuth {
|
|
|
1377
1668
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1378
1669
|
*/
|
|
1379
1670
|
secretStoreId?: pulumi.Input<string>;
|
|
1671
|
+
/**
|
|
1672
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1673
|
+
*/
|
|
1380
1674
|
subdomain: pulumi.Input<string>;
|
|
1381
1675
|
/**
|
|
1382
1676
|
* Tags is a map of key, value pairs.
|
|
@@ -1415,6 +1709,9 @@ export interface ResourceHttpBasicAuth {
|
|
|
1415
1709
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1416
1710
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1417
1711
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1712
|
+
/**
|
|
1713
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1714
|
+
*/
|
|
1418
1715
|
subdomain: pulumi.Input<string>;
|
|
1419
1716
|
/**
|
|
1420
1717
|
* Tags is a map of key, value pairs.
|
|
@@ -1449,6 +1746,9 @@ export interface ResourceHttpNoAuth {
|
|
|
1449
1746
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1450
1747
|
*/
|
|
1451
1748
|
secretStoreId?: pulumi.Input<string>;
|
|
1749
|
+
/**
|
|
1750
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1751
|
+
*/
|
|
1452
1752
|
subdomain: pulumi.Input<string>;
|
|
1453
1753
|
/**
|
|
1454
1754
|
* Tags is a map of key, value pairs.
|
|
@@ -1496,6 +1796,10 @@ export interface ResourceKubernetes {
|
|
|
1496
1796
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1497
1797
|
*/
|
|
1498
1798
|
secretStoreId?: pulumi.Input<string>;
|
|
1799
|
+
/**
|
|
1800
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1801
|
+
*/
|
|
1802
|
+
subdomain?: pulumi.Input<string>;
|
|
1499
1803
|
/**
|
|
1500
1804
|
* Tags is a map of key, value pairs.
|
|
1501
1805
|
*/
|
|
@@ -1532,6 +1836,10 @@ export interface ResourceKubernetesBasicAuth {
|
|
|
1532
1836
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1533
1837
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1534
1838
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1839
|
+
/**
|
|
1840
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1841
|
+
*/
|
|
1842
|
+
subdomain?: pulumi.Input<string>;
|
|
1535
1843
|
/**
|
|
1536
1844
|
* Tags is a map of key, value pairs.
|
|
1537
1845
|
*/
|
|
@@ -1571,6 +1879,10 @@ export interface ResourceKubernetesServiceAccount {
|
|
|
1571
1879
|
*/
|
|
1572
1880
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
1573
1881
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
1882
|
+
/**
|
|
1883
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1884
|
+
*/
|
|
1885
|
+
subdomain?: pulumi.Input<string>;
|
|
1574
1886
|
/**
|
|
1575
1887
|
* Tags is a map of key, value pairs.
|
|
1576
1888
|
*/
|
|
@@ -1608,6 +1920,10 @@ export interface ResourceKubernetesServiceAccountUserImpersonation {
|
|
|
1608
1920
|
*/
|
|
1609
1921
|
secretStoreTokenKey?: pulumi.Input<string>;
|
|
1610
1922
|
secretStoreTokenPath?: pulumi.Input<string>;
|
|
1923
|
+
/**
|
|
1924
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1925
|
+
*/
|
|
1926
|
+
subdomain?: pulumi.Input<string>;
|
|
1611
1927
|
/**
|
|
1612
1928
|
* Tags is a map of key, value pairs.
|
|
1613
1929
|
*/
|
|
@@ -1649,6 +1965,10 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
1649
1965
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1650
1966
|
*/
|
|
1651
1967
|
secretStoreId?: pulumi.Input<string>;
|
|
1968
|
+
/**
|
|
1969
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
1970
|
+
*/
|
|
1971
|
+
subdomain?: pulumi.Input<string>;
|
|
1652
1972
|
/**
|
|
1653
1973
|
* Tags is a map of key, value pairs.
|
|
1654
1974
|
*/
|
|
@@ -1682,6 +2002,10 @@ export interface ResourceMaria {
|
|
|
1682
2002
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1683
2003
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1684
2004
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2005
|
+
/**
|
|
2006
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2007
|
+
*/
|
|
2008
|
+
subdomain?: pulumi.Input<string>;
|
|
1685
2009
|
/**
|
|
1686
2010
|
* Tags is a map of key, value pairs.
|
|
1687
2011
|
*/
|
|
@@ -1710,6 +2034,10 @@ export interface ResourceMemcached {
|
|
|
1710
2034
|
* ID of the secret store containing credentials for this resource, if any.
|
|
1711
2035
|
*/
|
|
1712
2036
|
secretStoreId?: pulumi.Input<string>;
|
|
2037
|
+
/**
|
|
2038
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2039
|
+
*/
|
|
2040
|
+
subdomain?: pulumi.Input<string>;
|
|
1713
2041
|
/**
|
|
1714
2042
|
* Tags is a map of key, value pairs.
|
|
1715
2043
|
*/
|
|
@@ -1743,6 +2071,10 @@ export interface ResourceMemsql {
|
|
|
1743
2071
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1744
2072
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1745
2073
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2074
|
+
/**
|
|
2075
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2076
|
+
*/
|
|
2077
|
+
subdomain?: pulumi.Input<string>;
|
|
1746
2078
|
/**
|
|
1747
2079
|
* Tags is a map of key, value pairs.
|
|
1748
2080
|
*/
|
|
@@ -1777,6 +2109,10 @@ export interface ResourceMongoHost {
|
|
|
1777
2109
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1778
2110
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1779
2111
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2112
|
+
/**
|
|
2113
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2114
|
+
*/
|
|
2115
|
+
subdomain?: pulumi.Input<string>;
|
|
1780
2116
|
/**
|
|
1781
2117
|
* Tags is a map of key, value pairs.
|
|
1782
2118
|
*/
|
|
@@ -1813,6 +2149,10 @@ export interface ResourceMongoLegacyHost {
|
|
|
1813
2149
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1814
2150
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1815
2151
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2152
|
+
/**
|
|
2153
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2154
|
+
*/
|
|
2155
|
+
subdomain?: pulumi.Input<string>;
|
|
1816
2156
|
/**
|
|
1817
2157
|
* Tags is a map of key, value pairs.
|
|
1818
2158
|
*/
|
|
@@ -1850,6 +2190,10 @@ export interface ResourceMongoLegacyReplicaset {
|
|
|
1850
2190
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1851
2191
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1852
2192
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2193
|
+
/**
|
|
2194
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2195
|
+
*/
|
|
2196
|
+
subdomain?: pulumi.Input<string>;
|
|
1853
2197
|
/**
|
|
1854
2198
|
* Tags is a map of key, value pairs.
|
|
1855
2199
|
*/
|
|
@@ -1887,6 +2231,10 @@ export interface ResourceMongoReplicaSet {
|
|
|
1887
2231
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1888
2232
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1889
2233
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2234
|
+
/**
|
|
2235
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2236
|
+
*/
|
|
2237
|
+
subdomain?: pulumi.Input<string>;
|
|
1890
2238
|
/**
|
|
1891
2239
|
* Tags is a map of key, value pairs.
|
|
1892
2240
|
*/
|
|
@@ -1921,6 +2269,10 @@ export interface ResourceMongoShardedCluster {
|
|
|
1921
2269
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
1922
2270
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1923
2271
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2272
|
+
/**
|
|
2273
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2274
|
+
*/
|
|
2275
|
+
subdomain?: pulumi.Input<string>;
|
|
1924
2276
|
/**
|
|
1925
2277
|
* Tags is a map of key, value pairs.
|
|
1926
2278
|
*/
|
|
@@ -1966,6 +2318,10 @@ export interface ResourceMtlsMysql {
|
|
|
1966
2318
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
1967
2319
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
1968
2320
|
serverName?: pulumi.Input<string>;
|
|
2321
|
+
/**
|
|
2322
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2323
|
+
*/
|
|
2324
|
+
subdomain?: pulumi.Input<string>;
|
|
1969
2325
|
/**
|
|
1970
2326
|
* Tags is a map of key, value pairs.
|
|
1971
2327
|
*/
|
|
@@ -2011,6 +2367,10 @@ export interface ResourceMtlsPostgres {
|
|
|
2011
2367
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2012
2368
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2013
2369
|
serverName?: pulumi.Input<string>;
|
|
2370
|
+
/**
|
|
2371
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2372
|
+
*/
|
|
2373
|
+
subdomain?: pulumi.Input<string>;
|
|
2014
2374
|
/**
|
|
2015
2375
|
* Tags is a map of key, value pairs.
|
|
2016
2376
|
*/
|
|
@@ -2045,6 +2405,10 @@ export interface ResourceMysql {
|
|
|
2045
2405
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2046
2406
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2047
2407
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2408
|
+
/**
|
|
2409
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2410
|
+
*/
|
|
2411
|
+
subdomain?: pulumi.Input<string>;
|
|
2048
2412
|
/**
|
|
2049
2413
|
* Tags is a map of key, value pairs.
|
|
2050
2414
|
*/
|
|
@@ -2073,6 +2437,10 @@ export interface ResourceNeptune {
|
|
|
2073
2437
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2074
2438
|
*/
|
|
2075
2439
|
secretStoreId?: pulumi.Input<string>;
|
|
2440
|
+
/**
|
|
2441
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2442
|
+
*/
|
|
2443
|
+
subdomain?: pulumi.Input<string>;
|
|
2076
2444
|
/**
|
|
2077
2445
|
* Tags is a map of key, value pairs.
|
|
2078
2446
|
*/
|
|
@@ -2113,6 +2481,10 @@ export interface ResourceNeptuneIam {
|
|
|
2113
2481
|
secretStoreRoleExternalIdPath?: pulumi.Input<string>;
|
|
2114
2482
|
secretStoreSecretAccessKeyKey?: pulumi.Input<string>;
|
|
2115
2483
|
secretStoreSecretAccessKeyPath?: pulumi.Input<string>;
|
|
2484
|
+
/**
|
|
2485
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2486
|
+
*/
|
|
2487
|
+
subdomain?: pulumi.Input<string>;
|
|
2116
2488
|
/**
|
|
2117
2489
|
* Tags is a map of key, value pairs.
|
|
2118
2490
|
*/
|
|
@@ -2146,6 +2518,10 @@ export interface ResourceOracle {
|
|
|
2146
2518
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2147
2519
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2148
2520
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2521
|
+
/**
|
|
2522
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2523
|
+
*/
|
|
2524
|
+
subdomain?: pulumi.Input<string>;
|
|
2149
2525
|
/**
|
|
2150
2526
|
* Tags is a map of key, value pairs.
|
|
2151
2527
|
*/
|
|
@@ -2182,6 +2558,10 @@ export interface ResourcePostgres {
|
|
|
2182
2558
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2183
2559
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2184
2560
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2561
|
+
/**
|
|
2562
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2563
|
+
*/
|
|
2564
|
+
subdomain?: pulumi.Input<string>;
|
|
2185
2565
|
/**
|
|
2186
2566
|
* Tags is a map of key, value pairs.
|
|
2187
2567
|
*/
|
|
@@ -2214,6 +2594,10 @@ export interface ResourcePresto {
|
|
|
2214
2594
|
secretStoreId?: pulumi.Input<string>;
|
|
2215
2595
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
2216
2596
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2597
|
+
/**
|
|
2598
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2599
|
+
*/
|
|
2600
|
+
subdomain?: pulumi.Input<string>;
|
|
2217
2601
|
/**
|
|
2218
2602
|
* Tags is a map of key, value pairs.
|
|
2219
2603
|
*/
|
|
@@ -2248,6 +2632,10 @@ export interface ResourceRabbitmqAmqp091 {
|
|
|
2248
2632
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2249
2633
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2250
2634
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2635
|
+
/**
|
|
2636
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2637
|
+
*/
|
|
2638
|
+
subdomain?: pulumi.Input<string>;
|
|
2251
2639
|
/**
|
|
2252
2640
|
* Tags is a map of key, value pairs.
|
|
2253
2641
|
*/
|
|
@@ -2277,6 +2665,10 @@ export interface ResourceRawTcp {
|
|
|
2277
2665
|
* ID of the secret store containing credentials for this resource, if any.
|
|
2278
2666
|
*/
|
|
2279
2667
|
secretStoreId?: pulumi.Input<string>;
|
|
2668
|
+
/**
|
|
2669
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2670
|
+
*/
|
|
2671
|
+
subdomain?: pulumi.Input<string>;
|
|
2280
2672
|
/**
|
|
2281
2673
|
* Tags is a map of key, value pairs.
|
|
2282
2674
|
*/
|
|
@@ -2300,7 +2692,7 @@ export interface ResourceRdp {
|
|
|
2300
2692
|
*/
|
|
2301
2693
|
name: pulumi.Input<string>;
|
|
2302
2694
|
password?: pulumi.Input<string>;
|
|
2303
|
-
port
|
|
2695
|
+
port?: pulumi.Input<number>;
|
|
2304
2696
|
portOverride?: pulumi.Input<number>;
|
|
2305
2697
|
/**
|
|
2306
2698
|
* ID of the secret store containing credentials for this resource, if any.
|
|
@@ -2310,6 +2702,10 @@ export interface ResourceRdp {
|
|
|
2310
2702
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2311
2703
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2312
2704
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2705
|
+
/**
|
|
2706
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2707
|
+
*/
|
|
2708
|
+
subdomain?: pulumi.Input<string>;
|
|
2313
2709
|
/**
|
|
2314
2710
|
* Tags is a map of key, value pairs.
|
|
2315
2711
|
*/
|
|
@@ -2341,12 +2737,20 @@ export interface ResourceRedis {
|
|
|
2341
2737
|
secretStoreId?: pulumi.Input<string>;
|
|
2342
2738
|
secretStorePasswordKey?: pulumi.Input<string>;
|
|
2343
2739
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2740
|
+
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2741
|
+
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2742
|
+
/**
|
|
2743
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2744
|
+
*/
|
|
2745
|
+
subdomain?: pulumi.Input<string>;
|
|
2344
2746
|
/**
|
|
2345
2747
|
* Tags is a map of key, value pairs.
|
|
2346
2748
|
*/
|
|
2347
2749
|
tags?: pulumi.Input<{
|
|
2348
2750
|
[key: string]: pulumi.Input<string>;
|
|
2349
2751
|
}>;
|
|
2752
|
+
tlsRequired?: pulumi.Input<boolean>;
|
|
2753
|
+
username?: pulumi.Input<string>;
|
|
2350
2754
|
}
|
|
2351
2755
|
export interface ResourceRedshift {
|
|
2352
2756
|
/**
|
|
@@ -2375,6 +2779,10 @@ export interface ResourceRedshift {
|
|
|
2375
2779
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2376
2780
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2377
2781
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2782
|
+
/**
|
|
2783
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2784
|
+
*/
|
|
2785
|
+
subdomain?: pulumi.Input<string>;
|
|
2378
2786
|
/**
|
|
2379
2787
|
* Tags is a map of key, value pairs.
|
|
2380
2788
|
*/
|
|
@@ -2409,6 +2817,10 @@ export interface ResourceSingleStore {
|
|
|
2409
2817
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2410
2818
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2411
2819
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2820
|
+
/**
|
|
2821
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2822
|
+
*/
|
|
2823
|
+
subdomain?: pulumi.Input<string>;
|
|
2412
2824
|
/**
|
|
2413
2825
|
* Tags is a map of key, value pairs.
|
|
2414
2826
|
*/
|
|
@@ -2443,6 +2855,10 @@ export interface ResourceSnowflake {
|
|
|
2443
2855
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2444
2856
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2445
2857
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2858
|
+
/**
|
|
2859
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2860
|
+
*/
|
|
2861
|
+
subdomain?: pulumi.Input<string>;
|
|
2446
2862
|
/**
|
|
2447
2863
|
* Tags is a map of key, value pairs.
|
|
2448
2864
|
*/
|
|
@@ -2473,6 +2889,9 @@ export interface ResourceSnowsight {
|
|
|
2473
2889
|
secretStoreId?: pulumi.Input<string>;
|
|
2474
2890
|
secretStoreSamlMetadataKey?: pulumi.Input<string>;
|
|
2475
2891
|
secretStoreSamlMetadataPath?: pulumi.Input<string>;
|
|
2892
|
+
/**
|
|
2893
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2894
|
+
*/
|
|
2476
2895
|
subdomain: pulumi.Input<string>;
|
|
2477
2896
|
/**
|
|
2478
2897
|
* Tags is a map of key, value pairs.
|
|
@@ -2509,6 +2928,10 @@ export interface ResourceSqlServer {
|
|
|
2509
2928
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2510
2929
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2511
2930
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2931
|
+
/**
|
|
2932
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2933
|
+
*/
|
|
2934
|
+
subdomain?: pulumi.Input<string>;
|
|
2512
2935
|
/**
|
|
2513
2936
|
* Tags is a map of key, value pairs.
|
|
2514
2937
|
*/
|
|
@@ -2543,6 +2966,10 @@ export interface ResourceSsh {
|
|
|
2543
2966
|
secretStoreId?: pulumi.Input<string>;
|
|
2544
2967
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2545
2968
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
2969
|
+
/**
|
|
2970
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
2971
|
+
*/
|
|
2972
|
+
subdomain?: pulumi.Input<string>;
|
|
2546
2973
|
/**
|
|
2547
2974
|
* Tags is a map of key, value pairs.
|
|
2548
2975
|
*/
|
|
@@ -2578,6 +3005,10 @@ export interface ResourceSshCert {
|
|
|
2578
3005
|
secretStoreId?: pulumi.Input<string>;
|
|
2579
3006
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2580
3007
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3008
|
+
/**
|
|
3009
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3010
|
+
*/
|
|
3011
|
+
subdomain?: pulumi.Input<string>;
|
|
2581
3012
|
/**
|
|
2582
3013
|
* Tags is a map of key, value pairs.
|
|
2583
3014
|
*/
|
|
@@ -2613,6 +3044,10 @@ export interface ResourceSshCustomerKey {
|
|
|
2613
3044
|
secretStorePrivateKeyPath?: pulumi.Input<string>;
|
|
2614
3045
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2615
3046
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3047
|
+
/**
|
|
3048
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3049
|
+
*/
|
|
3050
|
+
subdomain?: pulumi.Input<string>;
|
|
2616
3051
|
/**
|
|
2617
3052
|
* Tags is a map of key, value pairs.
|
|
2618
3053
|
*/
|
|
@@ -2646,6 +3081,10 @@ export interface ResourceSybase {
|
|
|
2646
3081
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2647
3082
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2648
3083
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3084
|
+
/**
|
|
3085
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3086
|
+
*/
|
|
3087
|
+
subdomain?: pulumi.Input<string>;
|
|
2649
3088
|
/**
|
|
2650
3089
|
* Tags is a map of key, value pairs.
|
|
2651
3090
|
*/
|
|
@@ -2679,6 +3118,10 @@ export interface ResourceSybaseIq {
|
|
|
2679
3118
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2680
3119
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2681
3120
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3121
|
+
/**
|
|
3122
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3123
|
+
*/
|
|
3124
|
+
subdomain?: pulumi.Input<string>;
|
|
2682
3125
|
/**
|
|
2683
3126
|
* Tags is a map of key, value pairs.
|
|
2684
3127
|
*/
|
|
@@ -2712,6 +3155,10 @@ export interface ResourceTeradata {
|
|
|
2712
3155
|
secretStorePasswordPath?: pulumi.Input<string>;
|
|
2713
3156
|
secretStoreUsernameKey?: pulumi.Input<string>;
|
|
2714
3157
|
secretStoreUsernamePath?: pulumi.Input<string>;
|
|
3158
|
+
/**
|
|
3159
|
+
* Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
|
3160
|
+
*/
|
|
3161
|
+
subdomain?: pulumi.Input<string>;
|
|
2715
3162
|
/**
|
|
2716
3163
|
* Tags is a map of key, value pairs.
|
|
2717
3164
|
*/
|
|
@@ -2762,6 +3209,19 @@ export interface SecretStoreCyberarkConjur {
|
|
|
2762
3209
|
[key: string]: pulumi.Input<string>;
|
|
2763
3210
|
}>;
|
|
2764
3211
|
}
|
|
3212
|
+
export interface SecretStoreCyberarkPam {
|
|
3213
|
+
appUrl: pulumi.Input<string>;
|
|
3214
|
+
/**
|
|
3215
|
+
* Unique human-readable name of the SecretStore.
|
|
3216
|
+
*/
|
|
3217
|
+
name: pulumi.Input<string>;
|
|
3218
|
+
/**
|
|
3219
|
+
* Tags is a map of key, value pairs.
|
|
3220
|
+
*/
|
|
3221
|
+
tags?: pulumi.Input<{
|
|
3222
|
+
[key: string]: pulumi.Input<string>;
|
|
3223
|
+
}>;
|
|
3224
|
+
}
|
|
2765
3225
|
export interface SecretStoreCyberarkPamExperimental {
|
|
2766
3226
|
appUrl: pulumi.Input<string>;
|
|
2767
3227
|
/**
|