@pulumi/harness 0.11.2 → 0.11.3
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/autostopping/awsAlb.d.ts +7 -24
- package/autostopping/awsAlb.js +0 -9
- package/autostopping/awsAlb.js.map +1 -1
- package/autostopping/awsProxy.d.ts +6 -23
- package/autostopping/awsProxy.js +0 -9
- package/autostopping/awsProxy.js.map +1 -1
- package/autostopping/azureGateway.d.ts +9 -12
- package/autostopping/azureGateway.js +0 -5
- package/autostopping/azureGateway.js.map +1 -1
- package/autostopping/azureProxy.d.ts +6 -10
- package/autostopping/azureProxy.js +0 -6
- package/autostopping/azureProxy.js.map +1 -1
- package/autostopping/gcpProxy.d.ts +6 -10
- package/autostopping/gcpProxy.js +0 -6
- package/autostopping/gcpProxy.js.map +1 -1
- package/autostopping/getAwsAlb.d.ts +6 -21
- package/autostopping/getAwsAlb.js +0 -4
- package/autostopping/getAwsAlb.js.map +1 -1
- package/autostopping/getAwsProxy.d.ts +6 -21
- package/autostopping/getAwsProxy.js +0 -4
- package/autostopping/getAwsProxy.js.map +1 -1
- package/autostopping/getAzureGateway.d.ts +9 -12
- package/autostopping/getAzureGateway.js +0 -2
- package/autostopping/getAzureGateway.js.map +1 -1
- package/autostopping/getAzureProxy.d.ts +6 -9
- package/autostopping/getAzureProxy.js +0 -2
- package/autostopping/getAzureProxy.js.map +1 -1
- package/autostopping/getGcpProxy.d.ts +6 -9
- package/autostopping/getGcpProxy.js +0 -2
- package/autostopping/getGcpProxy.js.map +1 -1
- package/cluster/orchestrator.d.ts +28 -0
- package/cluster/orchestrator.js +28 -0
- package/cluster/orchestrator.js.map +1 -1
- package/encryptedText.d.ts +0 -1
- package/encryptedText.js +0 -1
- package/encryptedText.js.map +1 -1
- package/package.json +2 -2
- package/platform/environmentClustersMapping.d.ts +4 -0
- package/platform/environmentClustersMapping.js +4 -0
- package/platform/environmentClustersMapping.js.map +1 -1
- package/platform/getAzureKeyVaultConnector.d.ts +14 -0
- package/platform/getAzureKeyVaultConnector.js +14 -0
- package/platform/getAzureKeyVaultConnector.js.map +1 -1
- package/platform/getDelegateList.d.ts +9 -3
- package/platform/getDelegateList.js +6 -0
- package/platform/getDelegateList.js.map +1 -1
- package/platform/getInfraModule.d.ts +59 -9
- package/platform/getInfraModule.js +10 -0
- package/platform/getInfraModule.js.map +1 -1
- package/platform/getInfraModuleTesting.d.ts +9 -0
- package/platform/getInfraModuleTesting.js.map +1 -1
- package/platform/getInfraVariableSet.d.ts +18 -0
- package/platform/getInfraVariableSet.js.map +1 -1
- package/platform/getTerraformCloudConnector.d.ts +10 -0
- package/platform/getTerraformCloudConnector.js +4 -0
- package/platform/getTerraformCloudConnector.js.map +1 -1
- package/platform/getWorkspace.d.ts +18 -0
- package/platform/getWorkspace.js.map +1 -1
- package/platform/harRegistry.d.ts +8 -4
- package/platform/harRegistry.js +8 -4
- package/platform/harRegistry.js.map +1 -1
- package/platform/infraModule.d.ts +93 -0
- package/platform/infraModule.js +23 -0
- package/platform/infraModule.js.map +1 -1
- package/platform/infraModuleTesting.d.ts +11 -0
- package/platform/infraModuleTesting.js +2 -0
- package/platform/infraModuleTesting.js.map +1 -1
- package/platform/infraVariableSet.d.ts +18 -0
- package/platform/infraVariableSet.js.map +1 -1
- package/platform/monitoredService.d.ts +3 -3
- package/platform/monitoredService.js +3 -3
- package/platform/terraformCloudConnector.d.ts +19 -1
- package/platform/terraformCloudConnector.js +1 -1
- package/platform/terraformCloudConnector.js.map +1 -1
- package/platform/token.d.ts +6 -13
- package/platform/token.js +6 -13
- package/platform/token.js.map +1 -1
- package/platform/workspace.d.ts +36 -0
- package/platform/workspace.js.map +1 -1
- package/platformApiKey.d.ts +6 -13
- package/platformApiKey.js +6 -13
- package/platformApiKey.js.map +1 -1
- package/service/discoveryAgent.d.ts +0 -1
- package/service/discoveryAgent.js +0 -1
- package/service/discoveryAgent.js.map +1 -1
- package/types/output.d.ts +28 -0
- package/yamlConfig.d.ts +1 -1
- package/yamlConfig.js +1 -1
|
@@ -18,11 +18,10 @@ export interface GetAwsAlbArgs {
|
|
|
18
18
|
* Id of the cloud connector
|
|
19
19
|
*/
|
|
20
20
|
cloudConnectorId: string;
|
|
21
|
-
deleteCloudResourcesOnDestroy: boolean;
|
|
22
21
|
/**
|
|
23
|
-
*
|
|
22
|
+
* Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated ALB will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact.
|
|
24
23
|
*/
|
|
25
|
-
|
|
24
|
+
deleteCloudResourcesOnDestroy: boolean;
|
|
26
25
|
/**
|
|
27
26
|
* Name of the proxy
|
|
28
27
|
*/
|
|
@@ -31,10 +30,6 @@ export interface GetAwsAlbArgs {
|
|
|
31
30
|
* Region in which cloud resources are hosted
|
|
32
31
|
*/
|
|
33
32
|
region: string;
|
|
34
|
-
/**
|
|
35
|
-
* Route 53 hosted zone id
|
|
36
|
-
*/
|
|
37
|
-
route53HostedZoneId?: string;
|
|
38
33
|
/**
|
|
39
34
|
* Security Group to define the security rules that determine the inbound and outbound traffic
|
|
40
35
|
*/
|
|
@@ -57,11 +52,10 @@ export interface GetAwsAlbResult {
|
|
|
57
52
|
* Id of the cloud connector
|
|
58
53
|
*/
|
|
59
54
|
readonly cloudConnectorId: string;
|
|
60
|
-
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
61
55
|
/**
|
|
62
|
-
*
|
|
56
|
+
* Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated ALB will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact.
|
|
63
57
|
*/
|
|
64
|
-
readonly
|
|
58
|
+
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
65
59
|
/**
|
|
66
60
|
* The provider-assigned unique ID for this managed resource.
|
|
67
61
|
*/
|
|
@@ -78,10 +72,6 @@ export interface GetAwsAlbResult {
|
|
|
78
72
|
* Region in which cloud resources are hosted
|
|
79
73
|
*/
|
|
80
74
|
readonly region: string;
|
|
81
|
-
/**
|
|
82
|
-
* Route 53 hosted zone id
|
|
83
|
-
*/
|
|
84
|
-
readonly route53HostedZoneId?: string;
|
|
85
75
|
/**
|
|
86
76
|
* Security Group to define the security rules that determine the inbound and outbound traffic
|
|
87
77
|
*/
|
|
@@ -110,11 +100,10 @@ export interface GetAwsAlbOutputArgs {
|
|
|
110
100
|
* Id of the cloud connector
|
|
111
101
|
*/
|
|
112
102
|
cloudConnectorId: pulumi.Input<string>;
|
|
113
|
-
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
114
103
|
/**
|
|
115
|
-
*
|
|
104
|
+
* Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated ALB will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact.
|
|
116
105
|
*/
|
|
117
|
-
|
|
106
|
+
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
118
107
|
/**
|
|
119
108
|
* Name of the proxy
|
|
120
109
|
*/
|
|
@@ -123,10 +112,6 @@ export interface GetAwsAlbOutputArgs {
|
|
|
123
112
|
* Region in which cloud resources are hosted
|
|
124
113
|
*/
|
|
125
114
|
region: pulumi.Input<string>;
|
|
126
|
-
/**
|
|
127
|
-
* Route 53 hosted zone id
|
|
128
|
-
*/
|
|
129
|
-
route53HostedZoneId?: pulumi.Input<string>;
|
|
130
115
|
/**
|
|
131
116
|
* Security Group to define the security rules that determine the inbound and outbound traffic
|
|
132
117
|
*/
|
|
@@ -17,10 +17,8 @@ function getAwsAlb(args, opts) {
|
|
|
17
17
|
"certificateId": args.certificateId,
|
|
18
18
|
"cloudConnectorId": args.cloudConnectorId,
|
|
19
19
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
20
|
-
"hostName": args.hostName,
|
|
21
20
|
"name": args.name,
|
|
22
21
|
"region": args.region,
|
|
23
|
-
"route53HostedZoneId": args.route53HostedZoneId,
|
|
24
22
|
"securityGroups": args.securityGroups,
|
|
25
23
|
"vpc": args.vpc,
|
|
26
24
|
}, opts);
|
|
@@ -38,10 +36,8 @@ function getAwsAlbOutput(args, opts) {
|
|
|
38
36
|
"certificateId": args.certificateId,
|
|
39
37
|
"cloudConnectorId": args.cloudConnectorId,
|
|
40
38
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
41
|
-
"hostName": args.hostName,
|
|
42
39
|
"name": args.name,
|
|
43
40
|
"region": args.region,
|
|
44
|
-
"route53HostedZoneId": args.route53HostedZoneId,
|
|
45
41
|
"securityGroups": args.securityGroups,
|
|
46
42
|
"vpc": args.vpc,
|
|
47
43
|
}, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAwsAlb.js","sourceRoot":"","sources":["../../autostopping/getAwsAlb.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,
|
|
1
|
+
{"version":3,"file":"getAwsAlb.js","sourceRoot":"","sources":["../../autostopping/getAwsAlb.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8BAYC;AA+ED;;;;GAIG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAAiC;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC"}
|
|
@@ -24,11 +24,10 @@ export interface GetAwsProxyArgs {
|
|
|
24
24
|
* Id of the cloud connector
|
|
25
25
|
*/
|
|
26
26
|
cloudConnectorId: string;
|
|
27
|
-
deleteCloudResourcesOnDestroy: boolean;
|
|
28
27
|
/**
|
|
29
|
-
*
|
|
28
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in AWS account itself.
|
|
30
29
|
*/
|
|
31
|
-
|
|
30
|
+
deleteCloudResourcesOnDestroy: boolean;
|
|
32
31
|
keypair?: string;
|
|
33
32
|
/**
|
|
34
33
|
* Machine instance type
|
|
@@ -42,10 +41,6 @@ export interface GetAwsProxyArgs {
|
|
|
42
41
|
* Region in which cloud resources are hosted
|
|
43
42
|
*/
|
|
44
43
|
region: string;
|
|
45
|
-
/**
|
|
46
|
-
* Route 53 hosted zone id
|
|
47
|
-
*/
|
|
48
|
-
route53HostedZoneId?: string;
|
|
49
44
|
/**
|
|
50
45
|
* Security Group to define the security rules that determine the inbound and outbound traffic
|
|
51
46
|
*/
|
|
@@ -72,11 +67,10 @@ export interface GetAwsProxyResult {
|
|
|
72
67
|
* Id of the cloud connector
|
|
73
68
|
*/
|
|
74
69
|
readonly cloudConnectorId: string;
|
|
75
|
-
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
76
70
|
/**
|
|
77
|
-
*
|
|
71
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in AWS account itself.
|
|
78
72
|
*/
|
|
79
|
-
readonly
|
|
73
|
+
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
80
74
|
/**
|
|
81
75
|
* The provider-assigned unique ID for this managed resource.
|
|
82
76
|
*/
|
|
@@ -98,10 +92,6 @@ export interface GetAwsProxyResult {
|
|
|
98
92
|
* Region in which cloud resources are hosted
|
|
99
93
|
*/
|
|
100
94
|
readonly region: string;
|
|
101
|
-
/**
|
|
102
|
-
* Route 53 hosted zone id
|
|
103
|
-
*/
|
|
104
|
-
readonly route53HostedZoneId?: string;
|
|
105
95
|
/**
|
|
106
96
|
* Security Group to define the security rules that determine the inbound and outbound traffic
|
|
107
97
|
*/
|
|
@@ -134,11 +124,10 @@ export interface GetAwsProxyOutputArgs {
|
|
|
134
124
|
* Id of the cloud connector
|
|
135
125
|
*/
|
|
136
126
|
cloudConnectorId: pulumi.Input<string>;
|
|
137
|
-
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
138
127
|
/**
|
|
139
|
-
*
|
|
128
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from AWS account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in AWS account itself.
|
|
140
129
|
*/
|
|
141
|
-
|
|
130
|
+
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
142
131
|
keypair?: pulumi.Input<string>;
|
|
143
132
|
/**
|
|
144
133
|
* Machine instance type
|
|
@@ -152,10 +141,6 @@ export interface GetAwsProxyOutputArgs {
|
|
|
152
141
|
* Region in which cloud resources are hosted
|
|
153
142
|
*/
|
|
154
143
|
region: pulumi.Input<string>;
|
|
155
|
-
/**
|
|
156
|
-
* Route 53 hosted zone id
|
|
157
|
-
*/
|
|
158
|
-
route53HostedZoneId?: pulumi.Input<string>;
|
|
159
144
|
/**
|
|
160
145
|
* Security Group to define the security rules that determine the inbound and outbound traffic
|
|
161
146
|
*/
|
|
@@ -18,12 +18,10 @@ function getAwsProxy(args, opts) {
|
|
|
18
18
|
"certificates": args.certificates,
|
|
19
19
|
"cloudConnectorId": args.cloudConnectorId,
|
|
20
20
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
21
|
-
"hostName": args.hostName,
|
|
22
21
|
"keypair": args.keypair,
|
|
23
22
|
"machineType": args.machineType,
|
|
24
23
|
"name": args.name,
|
|
25
24
|
"region": args.region,
|
|
26
|
-
"route53HostedZoneId": args.route53HostedZoneId,
|
|
27
25
|
"securityGroups": args.securityGroups,
|
|
28
26
|
"vpc": args.vpc,
|
|
29
27
|
}, opts);
|
|
@@ -42,12 +40,10 @@ function getAwsProxyOutput(args, opts) {
|
|
|
42
40
|
"certificates": args.certificates,
|
|
43
41
|
"cloudConnectorId": args.cloudConnectorId,
|
|
44
42
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
45
|
-
"hostName": args.hostName,
|
|
46
43
|
"keypair": args.keypair,
|
|
47
44
|
"machineType": args.machineType,
|
|
48
45
|
"name": args.name,
|
|
49
46
|
"region": args.region,
|
|
50
|
-
"route53HostedZoneId": args.route53HostedZoneId,
|
|
51
47
|
"securityGroups": args.securityGroups,
|
|
52
48
|
"vpc": args.vpc,
|
|
53
49
|
}, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAwsProxy.js","sourceRoot":"","sources":["../../autostopping/getAwsProxy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,
|
|
1
|
+
{"version":3,"file":"getAwsProxy.js","sourceRoot":"","sources":["../../autostopping/getAwsProxy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,kCAeC;AAiGD;;;;GAIG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,8CAeC"}
|
|
@@ -25,15 +25,14 @@ export interface GetAzureGatewayArgs {
|
|
|
25
25
|
* Id of the cloud connector
|
|
26
26
|
*/
|
|
27
27
|
cloudConnectorId: string;
|
|
28
|
+
/**
|
|
29
|
+
* Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated Application Gateway will be deleted permanently from Azure account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact.
|
|
30
|
+
*/
|
|
28
31
|
deleteCloudResourcesOnDestroy: boolean;
|
|
29
32
|
/**
|
|
30
33
|
* ID of IP address to be used. Required only for creating new AppGateway. See https://learn.microsoft.com/en-us/azure/application-gateway/application-gateway-components#static-versus-dynamic-public-ip-address for more details
|
|
31
34
|
*/
|
|
32
35
|
frontendIp?: string;
|
|
33
|
-
/**
|
|
34
|
-
* Hostname for the proxy
|
|
35
|
-
*/
|
|
36
|
-
hostName: string;
|
|
37
36
|
/**
|
|
38
37
|
* Name of the proxy
|
|
39
38
|
*/
|
|
@@ -79,15 +78,14 @@ export interface GetAzureGatewayResult {
|
|
|
79
78
|
* Id of the cloud connector
|
|
80
79
|
*/
|
|
81
80
|
readonly cloudConnectorId: string;
|
|
81
|
+
/**
|
|
82
|
+
* Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated Application Gateway will be deleted permanently from Azure account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact.
|
|
83
|
+
*/
|
|
82
84
|
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
83
85
|
/**
|
|
84
86
|
* ID of IP address to be used. Required only for creating new AppGateway. See https://learn.microsoft.com/en-us/azure/application-gateway/application-gateway-components#static-versus-dynamic-public-ip-address for more details
|
|
85
87
|
*/
|
|
86
88
|
readonly frontendIp?: string;
|
|
87
|
-
/**
|
|
88
|
-
* Hostname for the proxy
|
|
89
|
-
*/
|
|
90
|
-
readonly hostName: string;
|
|
91
89
|
/**
|
|
92
90
|
* The provider-assigned unique ID for this managed resource.
|
|
93
91
|
*/
|
|
@@ -147,15 +145,14 @@ export interface GetAzureGatewayOutputArgs {
|
|
|
147
145
|
* Id of the cloud connector
|
|
148
146
|
*/
|
|
149
147
|
cloudConnectorId: pulumi.Input<string>;
|
|
148
|
+
/**
|
|
149
|
+
* Governs how the loadabalancer entity will be deleted on Terraform destroy. When set to true, the associated Application Gateway will be deleted permanently from Azure account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, leaving the cloud resources intact.
|
|
150
|
+
*/
|
|
150
151
|
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
151
152
|
/**
|
|
152
153
|
* ID of IP address to be used. Required only for creating new AppGateway. See https://learn.microsoft.com/en-us/azure/application-gateway/application-gateway-components#static-versus-dynamic-public-ip-address for more details
|
|
153
154
|
*/
|
|
154
155
|
frontendIp?: pulumi.Input<string>;
|
|
155
|
-
/**
|
|
156
|
-
* Hostname for the proxy
|
|
157
|
-
*/
|
|
158
|
-
hostName: pulumi.Input<string>;
|
|
159
156
|
/**
|
|
160
157
|
* Name of the proxy
|
|
161
158
|
*/
|
|
@@ -19,7 +19,6 @@ function getAzureGateway(args, opts) {
|
|
|
19
19
|
"cloudConnectorId": args.cloudConnectorId,
|
|
20
20
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
21
21
|
"frontendIp": args.frontendIp,
|
|
22
|
-
"hostName": args.hostName,
|
|
23
22
|
"name": args.name,
|
|
24
23
|
"region": args.region,
|
|
25
24
|
"resourceGroup": args.resourceGroup,
|
|
@@ -43,7 +42,6 @@ function getAzureGatewayOutput(args, opts) {
|
|
|
43
42
|
"cloudConnectorId": args.cloudConnectorId,
|
|
44
43
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
45
44
|
"frontendIp": args.frontendIp,
|
|
46
|
-
"hostName": args.hostName,
|
|
47
45
|
"name": args.name,
|
|
48
46
|
"region": args.region,
|
|
49
47
|
"resourceGroup": args.resourceGroup,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAzureGateway.js","sourceRoot":"","sources":["../../autostopping/getAzureGateway.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,
|
|
1
|
+
{"version":3,"file":"getAzureGateway.js","sourceRoot":"","sources":["../../autostopping/getAzureGateway.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,0CAgBC;AAqHD;;;;GAIG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sDAAsD,EAAE;QACvF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sDAgBC"}
|
|
@@ -25,11 +25,10 @@ export interface GetAzureProxyArgs {
|
|
|
25
25
|
* Id of the cloud connector
|
|
26
26
|
*/
|
|
27
27
|
cloudConnectorId: string;
|
|
28
|
-
deleteCloudResourcesOnDestroy: boolean;
|
|
29
28
|
/**
|
|
30
|
-
*
|
|
29
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from Azure account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in Azure account itself.
|
|
31
30
|
*/
|
|
32
|
-
|
|
31
|
+
deleteCloudResourcesOnDestroy: boolean;
|
|
33
32
|
/**
|
|
34
33
|
* Name of SSH Key to be used for proxy VM
|
|
35
34
|
*/
|
|
@@ -81,11 +80,10 @@ export interface GetAzureProxyResult {
|
|
|
81
80
|
* Id of the cloud connector
|
|
82
81
|
*/
|
|
83
82
|
readonly cloudConnectorId: string;
|
|
84
|
-
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
85
83
|
/**
|
|
86
|
-
*
|
|
84
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from Azure account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in Azure account itself.
|
|
87
85
|
*/
|
|
88
|
-
readonly
|
|
86
|
+
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
89
87
|
/**
|
|
90
88
|
* The provider-assigned unique ID for this managed resource.
|
|
91
89
|
*/
|
|
@@ -151,11 +149,10 @@ export interface GetAzureProxyOutputArgs {
|
|
|
151
149
|
* Id of the cloud connector
|
|
152
150
|
*/
|
|
153
151
|
cloudConnectorId: pulumi.Input<string>;
|
|
154
|
-
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
155
152
|
/**
|
|
156
|
-
*
|
|
153
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from Azure account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in Azure account itself.
|
|
157
154
|
*/
|
|
158
|
-
|
|
155
|
+
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
159
156
|
/**
|
|
160
157
|
* Name of SSH Key to be used for proxy VM
|
|
161
158
|
*/
|
|
@@ -19,7 +19,6 @@ function getAzureProxy(args, opts) {
|
|
|
19
19
|
"certificates": args.certificates,
|
|
20
20
|
"cloudConnectorId": args.cloudConnectorId,
|
|
21
21
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
22
|
-
"hostName": args.hostName,
|
|
23
22
|
"keypair": args.keypair,
|
|
24
23
|
"machineType": args.machineType,
|
|
25
24
|
"name": args.name,
|
|
@@ -45,7 +44,6 @@ function getAzureProxyOutput(args, opts) {
|
|
|
45
44
|
"certificates": args.certificates,
|
|
46
45
|
"cloudConnectorId": args.cloudConnectorId,
|
|
47
46
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
48
|
-
"hostName": args.hostName,
|
|
49
47
|
"keypair": args.keypair,
|
|
50
48
|
"machineType": args.machineType,
|
|
51
49
|
"name": args.name,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAzureProxy.js","sourceRoot":"","sources":["../../autostopping/getAzureProxy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,
|
|
1
|
+
{"version":3,"file":"getAzureProxy.js","sourceRoot":"","sources":["../../autostopping/getAzureProxy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAlBD,sCAkBC;AAyHD;;;;GAIG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAlBD,kDAkBC"}
|
|
@@ -24,11 +24,10 @@ export interface GetGcpProxyArgs {
|
|
|
24
24
|
* Id of the cloud connector
|
|
25
25
|
*/
|
|
26
26
|
cloudConnectorId: string;
|
|
27
|
-
deleteCloudResourcesOnDestroy: boolean;
|
|
28
27
|
/**
|
|
29
|
-
*
|
|
28
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from GCP account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in GCP account itself.
|
|
30
29
|
*/
|
|
31
|
-
|
|
30
|
+
deleteCloudResourcesOnDestroy: boolean;
|
|
32
31
|
/**
|
|
33
32
|
* Machine instance type
|
|
34
33
|
*/
|
|
@@ -75,11 +74,10 @@ export interface GetGcpProxyResult {
|
|
|
75
74
|
* Id of the cloud connector
|
|
76
75
|
*/
|
|
77
76
|
readonly cloudConnectorId: string;
|
|
78
|
-
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
79
77
|
/**
|
|
80
|
-
*
|
|
78
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from GCP account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in GCP account itself.
|
|
81
79
|
*/
|
|
82
|
-
readonly
|
|
80
|
+
readonly deleteCloudResourcesOnDestroy: boolean;
|
|
83
81
|
/**
|
|
84
82
|
* The provider-assigned unique ID for this managed resource.
|
|
85
83
|
*/
|
|
@@ -140,11 +138,10 @@ export interface GetGcpProxyOutputArgs {
|
|
|
140
138
|
* Id of the cloud connector
|
|
141
139
|
*/
|
|
142
140
|
cloudConnectorId: pulumi.Input<string>;
|
|
143
|
-
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
144
141
|
/**
|
|
145
|
-
*
|
|
142
|
+
* Governs how the proxy entity will be deleted on Terraform destroy. When set to true, the associated VM will be deleted permanently from GCP account. Be fully aware of the consequneces of settting this to true, as the action is irreversible. When set to false, solely the Harness LB representation will be deleted, which leaves the proxy VM in GCP account itself.
|
|
146
143
|
*/
|
|
147
|
-
|
|
144
|
+
deleteCloudResourcesOnDestroy: pulumi.Input<boolean>;
|
|
148
145
|
/**
|
|
149
146
|
* Machine instance type
|
|
150
147
|
*/
|
|
@@ -18,7 +18,6 @@ function getGcpProxy(args, opts) {
|
|
|
18
18
|
"certificates": args.certificates,
|
|
19
19
|
"cloudConnectorId": args.cloudConnectorId,
|
|
20
20
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
21
|
-
"hostName": args.hostName,
|
|
22
21
|
"machineType": args.machineType,
|
|
23
22
|
"name": args.name,
|
|
24
23
|
"region": args.region,
|
|
@@ -42,7 +41,6 @@ function getGcpProxyOutput(args, opts) {
|
|
|
42
41
|
"certificates": args.certificates,
|
|
43
42
|
"cloudConnectorId": args.cloudConnectorId,
|
|
44
43
|
"deleteCloudResourcesOnDestroy": args.deleteCloudResourcesOnDestroy,
|
|
45
|
-
"hostName": args.hostName,
|
|
46
44
|
"machineType": args.machineType,
|
|
47
45
|
"name": args.name,
|
|
48
46
|
"region": args.region,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGcpProxy.js","sourceRoot":"","sources":["../../autostopping/getGcpProxy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,
|
|
1
|
+
{"version":3,"file":"getGcpProxy.js","sourceRoot":"","sources":["../../autostopping/getGcpProxy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,kCAgBC;AA+GD;;;;GAIG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,+BAA+B,EAAE,IAAI,CAAC,6BAA6B;QACnE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,8CAgBC"}
|
|
@@ -1,4 +1,32 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Resource for creating and deleting ClusterOrchestrators.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as aws from "@pulumi/aws";
|
|
10
|
+
* import * as harness from "@pulumi/harness";
|
|
11
|
+
*
|
|
12
|
+
* const current = aws.index.Region({});
|
|
13
|
+
* const test = new harness.cluster.Orchestrator("test", {
|
|
14
|
+
* name: "name",
|
|
15
|
+
* clusterEndpoint: "http://test.test.com",
|
|
16
|
+
* k8sConnectorId: "test",
|
|
17
|
+
* region: current.name,
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* ## Lifecycle Operations
|
|
22
|
+
*
|
|
23
|
+
* This resource supports the following lifecycle operations:
|
|
24
|
+
*
|
|
25
|
+
* - **Create**: Creates a new cluster orchestrator in Harness CCM
|
|
26
|
+
* - **Delete**: Deletes the cluster orchestrator from Harness CCM
|
|
27
|
+
*
|
|
28
|
+
* When you run `terraform destroy`, the cluster orchestrator will be permanently deleted from your Harness account.
|
|
29
|
+
*/
|
|
2
30
|
export declare class Orchestrator extends pulumi.CustomResource {
|
|
3
31
|
/**
|
|
4
32
|
* Get an existing Orchestrator resource's state with the given name, ID, and optional extra
|
package/cluster/orchestrator.js
CHANGED
|
@@ -5,6 +5,34 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.Orchestrator = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource for creating and deleting ClusterOrchestrators.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as aws from "@pulumi/aws";
|
|
16
|
+
* import * as harness from "@pulumi/harness";
|
|
17
|
+
*
|
|
18
|
+
* const current = aws.index.Region({});
|
|
19
|
+
* const test = new harness.cluster.Orchestrator("test", {
|
|
20
|
+
* name: "name",
|
|
21
|
+
* clusterEndpoint: "http://test.test.com",
|
|
22
|
+
* k8sConnectorId: "test",
|
|
23
|
+
* region: current.name,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Lifecycle Operations
|
|
28
|
+
*
|
|
29
|
+
* This resource supports the following lifecycle operations:
|
|
30
|
+
*
|
|
31
|
+
* - **Create**: Creates a new cluster orchestrator in Harness CCM
|
|
32
|
+
* - **Delete**: Deletes the cluster orchestrator from Harness CCM
|
|
33
|
+
*
|
|
34
|
+
* When you run `terraform destroy`, the cluster orchestrator will be permanently deleted from your Harness account.
|
|
35
|
+
*/
|
|
8
36
|
class Orchestrator extends pulumi.CustomResource {
|
|
9
37
|
/**
|
|
10
38
|
* Get an existing Orchestrator resource's state with the given name, ID, and optional extra
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestrator.js","sourceRoot":"","sources":["../../cluster/orchestrator.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;SAC3C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA7EL,oCA8EC;AAhEG,gBAAgB;AACO,yBAAY,GAAG,2CAA2C,CAAC"}
|
|
1
|
+
{"version":3,"file":"orchestrator.js","sourceRoot":"","sources":["../../cluster/orchestrator.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;SAC3C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA7EL,oCA8EC;AAhEG,gBAAgB;AACO,yBAAY,GAAG,2CAA2C,CAAC"}
|
package/encryptedText.d.ts
CHANGED
package/encryptedText.js
CHANGED
package/encryptedText.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"encryptedText.js","sourceRoot":"","sources":["../encryptedText.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"encryptedText.js","sourceRoot":"","sources":["../encryptedText.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IAuCD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,gCAAgC,CAAC,GAAG,KAAK,EAAE,8BAA8B,CAAC;YACzF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,gCAAgC,CAAC,GAAG,IAAI,EAAE,8BAA8B,CAAC;YACxF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;QAC1D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AA9FL,sCA+FC;AAjFG,gBAAgB;AACO,0BAAY,GAAG,2CAA2C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Harness resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "harness",
|
|
26
|
-
"version": "0.11.
|
|
26
|
+
"version": "0.11.3",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environmentClustersMapping.js","sourceRoot":"","sources":["../../platform/environmentClustersMapping.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"environmentClustersMapping.js","sourceRoot":"","sources":["../../platform/environmentClustersMapping.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,IAAI,EAAE,KAAK,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxC,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AAzFL,gEA0FC;AA5EG,gBAAgB;AACO,uCAAY,GAAG,wEAAwE,CAAC"}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* Data source for looking up an Azure key vault connector.
|
|
4
|
+
*
|
|
5
|
+
* References:
|
|
6
|
+
* - For details on how to onboard with Terraform, please see Harness Terraform Provider Overview
|
|
7
|
+
* - To understand how to use Azure Key Vault, please see [Documentation](https://developer.harness.io/docs/platform/Secrets/Secrets-Management/azure-key-vault)
|
|
8
|
+
* - To get more information about Api, please see [API documentation](https://apidocs.harness.io/tag/Connectors)
|
|
9
|
+
*
|
|
3
10
|
* ## Example Usage
|
|
4
11
|
*
|
|
5
12
|
* ```typescript
|
|
@@ -99,6 +106,13 @@ export interface GetAzureKeyVaultConnectorResult {
|
|
|
99
106
|
readonly vaultName: string;
|
|
100
107
|
}
|
|
101
108
|
/**
|
|
109
|
+
* Data source for looking up an Azure key vault connector.
|
|
110
|
+
*
|
|
111
|
+
* References:
|
|
112
|
+
* - For details on how to onboard with Terraform, please see Harness Terraform Provider Overview
|
|
113
|
+
* - To understand how to use Azure Key Vault, please see [Documentation](https://developer.harness.io/docs/platform/Secrets/Secrets-Management/azure-key-vault)
|
|
114
|
+
* - To get more information about Api, please see [API documentation](https://apidocs.harness.io/tag/Connectors)
|
|
115
|
+
*
|
|
102
116
|
* ## Example Usage
|
|
103
117
|
*
|
|
104
118
|
* ```typescript
|