@pulumi/dbtcloud 0.2.0-alpha.1723453871 → 0.2.0-alpha.1723819717

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.
@@ -78,7 +78,7 @@ export declare class EnvironmentVariable extends pulumi.CustomResource {
78
78
  * Map from environment names to respective variable value, a special key `project` should be set for the project default variable value. This field is not set as sensitive so take precautions when using secret environment variables.
79
79
  */
80
80
  readonly environmentValues: pulumi.Output<{
81
- [key: string]: any;
81
+ [key: string]: string;
82
82
  }>;
83
83
  /**
84
84
  * Name for the variable, must be unique within a project, must be prefixed with 'DBT_'
@@ -105,7 +105,7 @@ export interface EnvironmentVariableState {
105
105
  * Map from environment names to respective variable value, a special key `project` should be set for the project default variable value. This field is not set as sensitive so take precautions when using secret environment variables.
106
106
  */
107
107
  environmentValues?: pulumi.Input<{
108
- [key: string]: any;
108
+ [key: string]: pulumi.Input<string>;
109
109
  }>;
110
110
  /**
111
111
  * Name for the variable, must be unique within a project, must be prefixed with 'DBT_'
@@ -124,7 +124,7 @@ export interface EnvironmentVariableArgs {
124
124
  * Map from environment names to respective variable value, a special key `project` should be set for the project default variable value. This field is not set as sensitive so take precautions when using secret environment variables.
125
125
  */
126
126
  environmentValues: pulumi.Input<{
127
- [key: string]: any;
127
+ [key: string]: pulumi.Input<string>;
128
128
  }>;
129
129
  /**
130
130
  * Name for the variable, must be unique within a project, must be prefixed with 'DBT_'
@@ -21,7 +21,7 @@ export interface GetEnvironmentVariableResult {
21
21
  * Map containing the environment variables
22
22
  */
23
23
  readonly environmentValues: {
24
- [key: string]: any;
24
+ [key: string]: string;
25
25
  };
26
26
  /**
27
27
  * The provider-assigned unique ID for this managed resource.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/dbtcloud",
3
- "version": "0.2.0-alpha.1723453871",
3
+ "version": "0.2.0-alpha.1723819717",
4
4
  "description": "A Pulumi package for creating and managing dbt Cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -26,7 +26,7 @@
26
26
  "pulumi": {
27
27
  "resource": true,
28
28
  "name": "dbtcloud",
29
- "version": "0.2.0-alpha.1723453871",
29
+ "version": "0.2.0-alpha.1723819717",
30
30
  "server": "github://api.github.com/pulumi/pulumi-dbtcloud"
31
31
  }
32
32
  }