@pulumiverse/grafana 0.14.0-alpha.1741092245 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/alerting/messageTemplate.d.ts +10 -10
  2. package/alerting/messageTemplate.js +4 -4
  3. package/cloud/accessPolicy.d.ts +2 -2
  4. package/cloud/accessPolicy.js +2 -2
  5. package/cloud/accessPolicyToken.d.ts +2 -2
  6. package/cloud/accessPolicyToken.js +2 -2
  7. package/cloud/getStack.d.ts +92 -0
  8. package/cloud/getStack.js.map +1 -1
  9. package/cloud/privateDataSourceConnectNetwork.d.ts +1 -1
  10. package/cloud/privateDataSourceConnectNetwork.js +1 -1
  11. package/cloud/privateDataSourceConnectNetworkToken.d.ts +1 -1
  12. package/cloud/privateDataSourceConnectNetworkToken.js +1 -1
  13. package/cloud/stack.d.ts +184 -0
  14. package/cloud/stack.js +46 -0
  15. package/cloud/stack.js.map +1 -1
  16. package/cloudAccessPolicy.d.ts +2 -2
  17. package/cloudAccessPolicy.js +2 -2
  18. package/cloudAccessPolicyToken.d.ts +2 -2
  19. package/cloudAccessPolicyToken.js +2 -2
  20. package/cloudStack.d.ts +184 -0
  21. package/cloudStack.js +46 -0
  22. package/cloudStack.js.map +1 -1
  23. package/config/vars.d.ts +5 -0
  24. package/config/vars.js +6 -0
  25. package/config/vars.js.map +1 -1
  26. package/frontendobservability/app.d.ts +99 -0
  27. package/frontendobservability/app.js +78 -0
  28. package/frontendobservability/app.js.map +1 -0
  29. package/frontendobservability/getApp.d.ts +47 -0
  30. package/frontendobservability/getApp.js +30 -0
  31. package/frontendobservability/getApp.js.map +1 -0
  32. package/frontendobservability/index.d.ts +6 -0
  33. package/frontendobservability/index.js +25 -0
  34. package/frontendobservability/index.js.map +1 -0
  35. package/getCloudStack.d.ts +92 -0
  36. package/getCloudStack.js.map +1 -1
  37. package/index.d.ts +2 -1
  38. package/index.js +3 -1
  39. package/index.js.map +1 -1
  40. package/messageTemplate.d.ts +10 -10
  41. package/messageTemplate.js +4 -4
  42. package/package.json +2 -2
  43. package/provider.d.ts +10 -0
  44. package/provider.js +2 -1
  45. package/provider.js.map +1 -1
  46. package/syntheticMonitoringInstallation.d.ts +1 -1
  47. package/syntheticMonitoringInstallation.js +1 -1
  48. package/syntheticmonitoring/installation.d.ts +1 -1
  49. package/syntheticmonitoring/installation.js +1 -1
@@ -1,9 +1,9 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * Manages Grafana Alerting message templates.
3
+ * Manages Grafana Alerting notification template groups, including notification templates.
4
4
  *
5
5
  * * Official documentation
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/alerting_provisioning/#templates)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/alerting_provisioning/#notification-template-groups)
7
7
  *
8
8
  * This resource requires Grafana 9.1.0 or later.
9
9
  *
@@ -14,8 +14,8 @@ import * as pulumi from "@pulumi/pulumi";
14
14
  * import * as grafana from "@pulumiverse/grafana";
15
15
  *
16
16
  * const myTemplate = new grafana.alerting.MessageTemplate("my_template", {
17
- * name: "My Reusable Template",
18
- * template: `{{define "My Reusable Template" }}
17
+ * name: "My Notification Template Group",
18
+ * template: `{{define "custom.message" }}
19
19
  * template content
20
20
  * {{ end }}`,
21
21
  * });
@@ -49,7 +49,7 @@ export declare class MessageTemplate extends pulumi.CustomResource {
49
49
  static isInstance(obj: any): obj is MessageTemplate;
50
50
  readonly disableProvenance: pulumi.Output<boolean | undefined>;
51
51
  /**
52
- * The name of the message template.
52
+ * The name of the notification template group.
53
53
  */
54
54
  readonly name: pulumi.Output<string>;
55
55
  /**
@@ -57,7 +57,7 @@ export declare class MessageTemplate extends pulumi.CustomResource {
57
57
  */
58
58
  readonly orgId: pulumi.Output<string | undefined>;
59
59
  /**
60
- * The content of the message template.
60
+ * The content of the notification template group.
61
61
  */
62
62
  readonly template: pulumi.Output<string>;
63
63
  /**
@@ -75,7 +75,7 @@ export declare class MessageTemplate extends pulumi.CustomResource {
75
75
  export interface MessageTemplateState {
76
76
  disableProvenance?: pulumi.Input<boolean>;
77
77
  /**
78
- * The name of the message template.
78
+ * The name of the notification template group.
79
79
  */
80
80
  name?: pulumi.Input<string>;
81
81
  /**
@@ -83,7 +83,7 @@ export interface MessageTemplateState {
83
83
  */
84
84
  orgId?: pulumi.Input<string>;
85
85
  /**
86
- * The content of the message template.
86
+ * The content of the notification template group.
87
87
  */
88
88
  template?: pulumi.Input<string>;
89
89
  }
@@ -93,7 +93,7 @@ export interface MessageTemplateState {
93
93
  export interface MessageTemplateArgs {
94
94
  disableProvenance?: pulumi.Input<boolean>;
95
95
  /**
96
- * The name of the message template.
96
+ * The name of the notification template group.
97
97
  */
98
98
  name?: pulumi.Input<string>;
99
99
  /**
@@ -101,7 +101,7 @@ export interface MessageTemplateArgs {
101
101
  */
102
102
  orgId?: pulumi.Input<string>;
103
103
  /**
104
- * The content of the message template.
104
+ * The content of the notification template group.
105
105
  */
106
106
  template: pulumi.Input<string>;
107
107
  }
@@ -6,10 +6,10 @@ exports.MessageTemplate = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * Manages Grafana Alerting message templates.
9
+ * Manages Grafana Alerting notification template groups, including notification templates.
10
10
  *
11
11
  * * Official documentation
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/alerting_provisioning/#templates)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/alerting_provisioning/#notification-template-groups)
13
13
  *
14
14
  * This resource requires Grafana 9.1.0 or later.
15
15
  *
@@ -20,8 +20,8 @@ const utilities = require("../utilities");
20
20
  * import * as grafana from "@pulumiverse/grafana";
21
21
  *
22
22
  * const myTemplate = new grafana.alerting.MessageTemplate("my_template", {
23
- * name: "My Reusable Template",
24
- * template: `{{define "My Reusable Template" }}
23
+ * name: "My Notification Template Group",
24
+ * template: `{{define "custom.message" }}
25
25
  * template content
26
26
  * {{ end }}`,
27
27
  * });
@@ -22,7 +22,7 @@ import * as outputs from "../types/output";
22
22
  * slug: "<your org slug>",
23
23
  * });
24
24
  * const test = new grafana.cloud.AccessPolicy("test", {
25
- * region: "us",
25
+ * region: "prod-us-east-0",
26
26
  * name: "my-policy",
27
27
  * displayName: "My Policy",
28
28
  * scopes: [
@@ -38,7 +38,7 @@ import * as outputs from "../types/output";
38
38
  * }],
39
39
  * });
40
40
  * const testAccessPolicyToken = new grafana.cloud.AccessPolicyToken("test", {
41
- * region: "us",
41
+ * region: "prod-us-east-0",
42
42
  * accessPolicyId: test.policyId,
43
43
  * name: "my-policy-token",
44
44
  * displayName: "My Policy Token",
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
26
26
  * slug: "<your org slug>",
27
27
  * });
28
28
  * const test = new grafana.cloud.AccessPolicy("test", {
29
- * region: "us",
29
+ * region: "prod-us-east-0",
30
30
  * name: "my-policy",
31
31
  * displayName: "My Policy",
32
32
  * scopes: [
@@ -42,7 +42,7 @@ const utilities = require("../utilities");
42
42
  * }],
43
43
  * });
44
44
  * const testAccessPolicyToken = new grafana.cloud.AccessPolicyToken("test", {
45
- * region: "us",
45
+ * region: "prod-us-east-0",
46
46
  * accessPolicyId: test.policyId,
47
47
  * name: "my-policy-token",
48
48
  * displayName: "My Policy Token",
@@ -20,7 +20,7 @@ import * as pulumi from "@pulumi/pulumi";
20
20
  * slug: "<your org slug>",
21
21
  * });
22
22
  * const test = new grafana.cloud.AccessPolicy("test", {
23
- * region: "us",
23
+ * region: "prod-us-east-0",
24
24
  * name: "my-policy",
25
25
  * displayName: "My Policy",
26
26
  * scopes: [
@@ -36,7 +36,7 @@ import * as pulumi from "@pulumi/pulumi";
36
36
  * }],
37
37
  * });
38
38
  * const testAccessPolicyToken = new grafana.cloud.AccessPolicyToken("test", {
39
- * region: "us",
39
+ * region: "prod-us-east-0",
40
40
  * accessPolicyId: test.policyId,
41
41
  * name: "my-policy-token",
42
42
  * displayName: "My Policy Token",
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
26
26
  * slug: "<your org slug>",
27
27
  * });
28
28
  * const test = new grafana.cloud.AccessPolicy("test", {
29
- * region: "us",
29
+ * region: "prod-us-east-0",
30
30
  * name: "my-policy",
31
31
  * displayName: "My Policy",
32
32
  * scopes: [
@@ -42,7 +42,7 @@ const utilities = require("../utilities");
42
42
  * }],
43
43
  * });
44
44
  * const testAccessPolicyToken = new grafana.cloud.AccessPolicyToken("test", {
45
- * region: "us",
45
+ * region: "prod-us-east-0",
46
46
  * accessPolicyId: test.policyId,
47
47
  * name: "my-policy-token",
48
48
  * displayName: "My Policy Token",
@@ -35,6 +35,10 @@ export interface GetStackArgs {
35
35
  * A collection of values returned by getStack.
36
36
  */
37
37
  export interface GetStackResult {
38
+ /**
39
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
40
+ */
41
+ readonly alertmanagerIpAllowListCname: string;
38
42
  /**
39
43
  * Name of the Alertmanager instance configured for this stack.
40
44
  */
@@ -75,7 +79,23 @@ export interface GetStackResult {
75
79
  * User ID of the Fleet Management instance configured for this stack.
76
80
  */
77
81
  readonly fleetManagementUserId: number;
82
+ /**
83
+ * Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
84
+ */
85
+ readonly grafanasIpAllowListCname: string;
86
+ /**
87
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
88
+ */
89
+ readonly graphiteIpAllowListCname: string;
78
90
  readonly graphiteName: string;
91
+ /**
92
+ * Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
93
+ */
94
+ readonly graphitePrivateConnectivityInfoPrivateDns: string;
95
+ /**
96
+ * Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
97
+ */
98
+ readonly graphitePrivateConnectivityInfoServiceName: string;
79
99
  readonly graphiteStatus: string;
80
100
  readonly graphiteUrl: string;
81
101
  readonly graphiteUserId: number;
@@ -93,7 +113,19 @@ export interface GetStackResult {
93
113
  readonly labels: {
94
114
  [key: string]: string;
95
115
  };
116
+ /**
117
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
118
+ */
119
+ readonly logsIpAllowListCname: string;
96
120
  readonly logsName: string;
121
+ /**
122
+ * Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
123
+ */
124
+ readonly logsPrivateConnectivityInfoPrivateDns: string;
125
+ /**
126
+ * Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
127
+ */
128
+ readonly logsPrivateConnectivityInfoServiceName: string;
97
129
  readonly logsStatus: string;
98
130
  readonly logsUrl: string;
99
131
  readonly logsUserId: number;
@@ -113,18 +145,66 @@ export interface GetStackResult {
113
145
  * Organization slug to assign to this stack.
114
146
  */
115
147
  readonly orgSlug: string;
148
+ /**
149
+ * Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
150
+ */
151
+ readonly otlpPrivateConnectivityInfoPrivateDns: string;
152
+ /**
153
+ * Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
154
+ */
155
+ readonly otlpPrivateConnectivityInfoServiceName: string;
116
156
  /**
117
157
  * Base URL of the OTLP instance configured for this stack. The username is the stack's ID (`id` attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
118
158
  */
119
159
  readonly otlpUrl: string;
160
+ /**
161
+ * Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
162
+ */
163
+ readonly pdcApiPrivateConnectivityInfoPrivateDns: string;
164
+ /**
165
+ * Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
166
+ */
167
+ readonly pdcApiPrivateConnectivityInfoServiceName: string;
168
+ /**
169
+ * Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
170
+ */
171
+ readonly pdcGatewayPrivateConnectivityInfoPrivateDns: string;
172
+ /**
173
+ * Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
174
+ */
175
+ readonly pdcGatewayPrivateConnectivityInfoServiceName: string;
176
+ /**
177
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
178
+ */
179
+ readonly profilesIpAllowListCname: string;
120
180
  readonly profilesName: string;
181
+ /**
182
+ * Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
183
+ */
184
+ readonly profilesPrivateConnectivityInfoPrivateDns: string;
185
+ /**
186
+ * Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
187
+ */
188
+ readonly profilesPrivateConnectivityInfoServiceName: string;
121
189
  readonly profilesStatus: string;
122
190
  readonly profilesUrl: string;
123
191
  readonly profilesUserId: number;
192
+ /**
193
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
194
+ */
195
+ readonly prometheusIpAllowListCname: string;
124
196
  /**
125
197
  * Prometheus name for this instance.
126
198
  */
127
199
  readonly prometheusName: string;
200
+ /**
201
+ * Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
202
+ */
203
+ readonly prometheusPrivateConnectivityInfoPrivateDns: string;
204
+ /**
205
+ * Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
206
+ */
207
+ readonly prometheusPrivateConnectivityInfoServiceName: string;
128
208
  /**
129
209
  * Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
130
210
  */
@@ -158,7 +238,19 @@ export interface GetStackResult {
158
238
  * Status of the stack.
159
239
  */
160
240
  readonly status: string;
241
+ /**
242
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
243
+ */
244
+ readonly tracesIpAllowListCname: string;
161
245
  readonly tracesName: string;
246
+ /**
247
+ * Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
248
+ */
249
+ readonly tracesPrivateConnectivityInfoPrivateDns: string;
250
+ /**
251
+ * Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
252
+ */
253
+ readonly tracesPrivateConnectivityInfoServiceName: string;
162
254
  readonly tracesStatus: string;
163
255
  /**
164
256
  * Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append `/tempo` to the URL.
@@ -1 +1 @@
1
- {"version":3,"file":"getStack.js","sourceRoot":"","sources":["../../cloud/getStack.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;AAsJD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iCAAiC,EAAE;QAClE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC"}
1
+ {"version":3,"file":"getStack.js","sourceRoot":"","sources":["../../cloud/getStack.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;AAkPD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iCAAiC,EAAE;QAClE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC"}
@@ -20,7 +20,7 @@ import * as pulumi from "@pulumi/pulumi";
20
20
  * slug: "<your slug>",
21
21
  * });
22
22
  * const test = new grafana.cloud.PrivateDataSourceConnectNetwork("test", {
23
- * region: "us",
23
+ * region: "prod-us-east-0",
24
24
  * name: "my-pdc",
25
25
  * displayName: "My PDC",
26
26
  * stackIdentifier: current.then(current => current.id),
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
26
26
  * slug: "<your slug>",
27
27
  * });
28
28
  * const test = new grafana.cloud.PrivateDataSourceConnectNetwork("test", {
29
- * region: "us",
29
+ * region: "prod-us-east-0",
30
30
  * name: "my-pdc",
31
31
  * displayName: "My PDC",
32
32
  * stackIdentifier: current.then(current => current.id),
@@ -20,7 +20,7 @@ import * as pulumi from "@pulumi/pulumi";
20
20
  * slug: "<your slug>",
21
21
  * });
22
22
  * const test = new grafana.cloud.PrivateDataSourceConnectNetwork("test", {
23
- * region: "us",
23
+ * region: "prod-us-east-0",
24
24
  * name: "my-pdc",
25
25
  * displayName: "My PDC",
26
26
  * stackIdentifier: current.then(current => current.id),
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
26
26
  * slug: "<your slug>",
27
27
  * });
28
28
  * const test = new grafana.cloud.PrivateDataSourceConnectNetwork("test", {
29
- * region: "us",
29
+ * region: "prod-us-east-0",
30
30
  * name: "my-pdc",
31
31
  * displayName: "My PDC",
32
32
  * stackIdentifier: current.then(current => current.id),
package/cloud/stack.d.ts CHANGED
@@ -44,6 +44,10 @@ export declare class Stack extends pulumi.CustomResource {
44
44
  * when multiple copies of the Pulumi SDK have been loaded into the same process.
45
45
  */
46
46
  static isInstance(obj: any): obj is Stack;
47
+ /**
48
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
49
+ */
50
+ readonly alertmanagerIpAllowListCname: pulumi.Output<string>;
47
51
  /**
48
52
  * Name of the Alertmanager instance configured for this stack.
49
53
  */
@@ -84,7 +88,23 @@ export declare class Stack extends pulumi.CustomResource {
84
88
  * User ID of the Fleet Management instance configured for this stack.
85
89
  */
86
90
  readonly fleetManagementUserId: pulumi.Output<number>;
91
+ /**
92
+ * Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
93
+ */
94
+ readonly grafanasIpAllowListCname: pulumi.Output<string>;
95
+ /**
96
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
97
+ */
98
+ readonly graphiteIpAllowListCname: pulumi.Output<string>;
87
99
  readonly graphiteName: pulumi.Output<string>;
100
+ /**
101
+ * Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
102
+ */
103
+ readonly graphitePrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
104
+ /**
105
+ * Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
106
+ */
107
+ readonly graphitePrivateConnectivityInfoServiceName: pulumi.Output<string>;
88
108
  readonly graphiteStatus: pulumi.Output<string>;
89
109
  readonly graphiteUrl: pulumi.Output<string>;
90
110
  readonly graphiteUserId: pulumi.Output<number>;
@@ -98,7 +118,19 @@ export declare class Stack extends pulumi.CustomResource {
98
118
  readonly labels: pulumi.Output<{
99
119
  [key: string]: string;
100
120
  } | undefined>;
121
+ /**
122
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
123
+ */
124
+ readonly logsIpAllowListCname: pulumi.Output<string>;
101
125
  readonly logsName: pulumi.Output<string>;
126
+ /**
127
+ * Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
128
+ */
129
+ readonly logsPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
130
+ /**
131
+ * Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
132
+ */
133
+ readonly logsPrivateConnectivityInfoServiceName: pulumi.Output<string>;
102
134
  readonly logsStatus: pulumi.Output<string>;
103
135
  readonly logsUrl: pulumi.Output<string>;
104
136
  readonly logsUserId: pulumi.Output<number>;
@@ -118,18 +150,66 @@ export declare class Stack extends pulumi.CustomResource {
118
150
  * Organization slug to assign to this stack.
119
151
  */
120
152
  readonly orgSlug: pulumi.Output<string>;
153
+ /**
154
+ * Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
155
+ */
156
+ readonly otlpPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
157
+ /**
158
+ * Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
159
+ */
160
+ readonly otlpPrivateConnectivityInfoServiceName: pulumi.Output<string>;
121
161
  /**
122
162
  * Base URL of the OTLP instance configured for this stack. The username is the stack's ID (`id` attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
123
163
  */
124
164
  readonly otlpUrl: pulumi.Output<string>;
165
+ /**
166
+ * Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
167
+ */
168
+ readonly pdcApiPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
169
+ /**
170
+ * Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
171
+ */
172
+ readonly pdcApiPrivateConnectivityInfoServiceName: pulumi.Output<string>;
173
+ /**
174
+ * Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
175
+ */
176
+ readonly pdcGatewayPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
177
+ /**
178
+ * Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
179
+ */
180
+ readonly pdcGatewayPrivateConnectivityInfoServiceName: pulumi.Output<string>;
181
+ /**
182
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
183
+ */
184
+ readonly profilesIpAllowListCname: pulumi.Output<string>;
125
185
  readonly profilesName: pulumi.Output<string>;
186
+ /**
187
+ * Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
188
+ */
189
+ readonly profilesPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
190
+ /**
191
+ * Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
192
+ */
193
+ readonly profilesPrivateConnectivityInfoServiceName: pulumi.Output<string>;
126
194
  readonly profilesStatus: pulumi.Output<string>;
127
195
  readonly profilesUrl: pulumi.Output<string>;
128
196
  readonly profilesUserId: pulumi.Output<number>;
197
+ /**
198
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
199
+ */
200
+ readonly prometheusIpAllowListCname: pulumi.Output<string>;
129
201
  /**
130
202
  * Prometheus name for this instance.
131
203
  */
132
204
  readonly prometheusName: pulumi.Output<string>;
205
+ /**
206
+ * Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
207
+ */
208
+ readonly prometheusPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
209
+ /**
210
+ * Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
211
+ */
212
+ readonly prometheusPrivateConnectivityInfoServiceName: pulumi.Output<string>;
133
213
  /**
134
214
  * Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
135
215
  */
@@ -162,7 +242,19 @@ export declare class Stack extends pulumi.CustomResource {
162
242
  * Status of the stack.
163
243
  */
164
244
  readonly status: pulumi.Output<string>;
245
+ /**
246
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
247
+ */
248
+ readonly tracesIpAllowListCname: pulumi.Output<string>;
165
249
  readonly tracesName: pulumi.Output<string>;
250
+ /**
251
+ * Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
252
+ */
253
+ readonly tracesPrivateConnectivityInfoPrivateDns: pulumi.Output<string>;
254
+ /**
255
+ * Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
256
+ */
257
+ readonly tracesPrivateConnectivityInfoServiceName: pulumi.Output<string>;
166
258
  readonly tracesStatus: pulumi.Output<string>;
167
259
  /**
168
260
  * Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append `/tempo` to the URL.
@@ -194,6 +286,10 @@ export declare class Stack extends pulumi.CustomResource {
194
286
  * Input properties used for looking up and filtering Stack resources.
195
287
  */
196
288
  export interface StackState {
289
+ /**
290
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Alertmanager instances (Optional)
291
+ */
292
+ alertmanagerIpAllowListCname?: pulumi.Input<string>;
197
293
  /**
198
294
  * Name of the Alertmanager instance configured for this stack.
199
295
  */
@@ -234,7 +330,23 @@ export interface StackState {
234
330
  * User ID of the Fleet Management instance configured for this stack.
235
331
  */
236
332
  fleetManagementUserId?: pulumi.Input<number>;
333
+ /**
334
+ * Comma-separated list of CNAMEs that can be whitelisted to access the grafana instance (Optional)
335
+ */
336
+ grafanasIpAllowListCname?: pulumi.Input<string>;
337
+ /**
338
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Graphite instance (Optional)
339
+ */
340
+ graphiteIpAllowListCname?: pulumi.Input<string>;
237
341
  graphiteName?: pulumi.Input<string>;
342
+ /**
343
+ * Private DNS for Graphite when using AWS PrivateLink (only for AWS stacks)
344
+ */
345
+ graphitePrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
346
+ /**
347
+ * Service Name for Graphite when using AWS PrivateLink (only for AWS stacks)
348
+ */
349
+ graphitePrivateConnectivityInfoServiceName?: pulumi.Input<string>;
238
350
  graphiteStatus?: pulumi.Input<string>;
239
351
  graphiteUrl?: pulumi.Input<string>;
240
352
  graphiteUserId?: pulumi.Input<number>;
@@ -248,7 +360,19 @@ export interface StackState {
248
360
  labels?: pulumi.Input<{
249
361
  [key: string]: pulumi.Input<string>;
250
362
  }>;
363
+ /**
364
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Logs instance (Optional)
365
+ */
366
+ logsIpAllowListCname?: pulumi.Input<string>;
251
367
  logsName?: pulumi.Input<string>;
368
+ /**
369
+ * Private DNS for Logs when using AWS PrivateLink (only for AWS stacks)
370
+ */
371
+ logsPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
372
+ /**
373
+ * Service Name for Logs when using AWS PrivateLink (only for AWS stacks)
374
+ */
375
+ logsPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
252
376
  logsStatus?: pulumi.Input<string>;
253
377
  logsUrl?: pulumi.Input<string>;
254
378
  logsUserId?: pulumi.Input<number>;
@@ -268,18 +392,66 @@ export interface StackState {
268
392
  * Organization slug to assign to this stack.
269
393
  */
270
394
  orgSlug?: pulumi.Input<string>;
395
+ /**
396
+ * Private DNS for OTLP when using AWS PrivateLink (only for AWS stacks)
397
+ */
398
+ otlpPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
399
+ /**
400
+ * Service Name for OTLP when using AWS PrivateLink (only for AWS stacks)
401
+ */
402
+ otlpPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
271
403
  /**
272
404
  * Base URL of the OTLP instance configured for this stack. The username is the stack's ID (`id` attribute of this resource). See https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/ for docs on how to use this.
273
405
  */
274
406
  otlpUrl?: pulumi.Input<string>;
407
+ /**
408
+ * Private DNS for PDC's API when using AWS PrivateLink (only for AWS stacks)
409
+ */
410
+ pdcApiPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
411
+ /**
412
+ * Service Name for PDC's API when using AWS PrivateLink (only for AWS stacks)
413
+ */
414
+ pdcApiPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
415
+ /**
416
+ * Private DNS for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
417
+ */
418
+ pdcGatewayPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
419
+ /**
420
+ * Service Name for PDC's Gateway when using AWS PrivateLink (only for AWS stacks)
421
+ */
422
+ pdcGatewayPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
423
+ /**
424
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Profiles instance (Optional)
425
+ */
426
+ profilesIpAllowListCname?: pulumi.Input<string>;
275
427
  profilesName?: pulumi.Input<string>;
428
+ /**
429
+ * Private DNS for Profiles when using AWS PrivateLink (only for AWS stacks)
430
+ */
431
+ profilesPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
432
+ /**
433
+ * Service Name for Profiles when using AWS PrivateLink (only for AWS stacks)
434
+ */
435
+ profilesPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
276
436
  profilesStatus?: pulumi.Input<string>;
277
437
  profilesUrl?: pulumi.Input<string>;
278
438
  profilesUserId?: pulumi.Input<number>;
439
+ /**
440
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Prometheus instance (Optional)
441
+ */
442
+ prometheusIpAllowListCname?: pulumi.Input<string>;
279
443
  /**
280
444
  * Prometheus name for this instance.
281
445
  */
282
446
  prometheusName?: pulumi.Input<string>;
447
+ /**
448
+ * Private DNS for Prometheus when using AWS PrivateLink (only for AWS stacks)
449
+ */
450
+ prometheusPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
451
+ /**
452
+ * Service Name for Prometheus when using AWS PrivateLink (only for AWS stacks)
453
+ */
454
+ prometheusPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
283
455
  /**
284
456
  * Use this URL to query hosted metrics data e.g. Prometheus data source in Grafana
285
457
  */
@@ -312,7 +484,19 @@ export interface StackState {
312
484
  * Status of the stack.
313
485
  */
314
486
  status?: pulumi.Input<string>;
487
+ /**
488
+ * Comma-separated list of CNAMEs that can be whitelisted to access the Traces instance (Optional)
489
+ */
490
+ tracesIpAllowListCname?: pulumi.Input<string>;
315
491
  tracesName?: pulumi.Input<string>;
492
+ /**
493
+ * Private DNS for Traces when using AWS PrivateLink (only for AWS stacks)
494
+ */
495
+ tracesPrivateConnectivityInfoPrivateDns?: pulumi.Input<string>;
496
+ /**
497
+ * Service Name for Traces when using AWS PrivateLink (only for AWS stacks)
498
+ */
499
+ tracesPrivateConnectivityInfoServiceName?: pulumi.Input<string>;
316
500
  tracesStatus?: pulumi.Input<string>;
317
501
  /**
318
502
  * Base URL of the Traces instance configured for this stack. To use this in the Tempo data source in Grafana, append `/tempo` to the URL.