@drunk-pulumi/azure 1.0.32 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types.d.ts CHANGED
@@ -217,12 +217,14 @@ export type StorageInfo = ResourceInfo & StorageConnectionInfo & {
217
217
  * Application Insights secrets information.
218
218
  */
219
219
  export type AppInsightSecretsInfo = {
220
- instrumentationKey?: Output<string>;
220
+ instrumentationKey: Output<string>;
221
221
  };
222
222
  /**
223
223
  * Application Insights information.
224
224
  */
225
- export type AppInsightInfo = ResourceInfo & AppInsightSecretsInfo;
225
+ export type AppInsightInfo = ResourceInfo & AppInsightSecretsInfo & {
226
+ connectionString: Output<string>;
227
+ };
226
228
  /**
227
229
  * Log workspace secrets information.
228
230
  */