@pulumi/dbtcloud 1.8.0-alpha.1775837411 → 1.8.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 (69) hide show
  1. package/athenaCredential.d.ts +64 -24
  2. package/athenaCredential.js +9 -21
  3. package/athenaCredential.js.map +1 -1
  4. package/authProvider.d.ts +339 -0
  5. package/authProvider.js +121 -0
  6. package/authProvider.js.map +1 -0
  7. package/azureAdApplication.d.ts +180 -0
  8. package/azureAdApplication.js +131 -0
  9. package/azureAdApplication.js.map +1 -0
  10. package/bigquerySemanticLayerCredential.d.ts +32 -5
  11. package/bigquerySemanticLayerCredential.js +5 -4
  12. package/bigquerySemanticLayerCredential.js.map +1 -1
  13. package/databricksCredential.d.ts +32 -19
  14. package/databricksCredential.js +5 -18
  15. package/databricksCredential.js.map +1 -1
  16. package/databricksPlatformMetadataCredential.d.ts +32 -22
  17. package/databricksPlatformMetadataCredential.js +5 -21
  18. package/databricksPlatformMetadataCredential.js.map +1 -1
  19. package/fabricCredential.d.ts +60 -31
  20. package/fabricCredential.js +9 -26
  21. package/fabricCredential.js.map +1 -1
  22. package/index.d.ts +15 -0
  23. package/index.js +28 -3
  24. package/index.js.map +1 -1
  25. package/lineageIntegration.d.ts +32 -24
  26. package/lineageIntegration.js +5 -23
  27. package/lineageIntegration.js.map +1 -1
  28. package/oauthConfiguration.d.ts +32 -5
  29. package/oauthConfiguration.js +5 -4
  30. package/oauthConfiguration.js.map +1 -1
  31. package/openaiIntegration.d.ts +197 -0
  32. package/openaiIntegration.js +122 -0
  33. package/openaiIntegration.js.map +1 -0
  34. package/package.json +2 -2
  35. package/postgresCredential.d.ts +30 -20
  36. package/postgresCredential.js +5 -18
  37. package/postgresCredential.js.map +1 -1
  38. package/redshiftCredential.d.ts +30 -19
  39. package/redshiftCredential.js +5 -17
  40. package/redshiftCredential.js.map +1 -1
  41. package/salesforceCredential.d.ts +64 -27
  42. package/salesforceCredential.js +9 -24
  43. package/salesforceCredential.js.map +1 -1
  44. package/scimConfig.d.ts +103 -0
  45. package/scimConfig.js +93 -0
  46. package/scimConfig.js.map +1 -0
  47. package/scimConfigToken.d.ts +105 -0
  48. package/scimConfigToken.js +90 -0
  49. package/scimConfigToken.js.map +1 -0
  50. package/snowflakeCredential.d.ts +90 -25
  51. package/snowflakeCredential.js +13 -17
  52. package/snowflakeCredential.js.map +1 -1
  53. package/snowflakePlatformMetadataCredential.d.ts +90 -42
  54. package/snowflakePlatformMetadataCredential.js +13 -34
  55. package/snowflakePlatformMetadataCredential.js.map +1 -1
  56. package/sparkCredential.d.ts +32 -18
  57. package/sparkCredential.js +5 -17
  58. package/sparkCredential.js.map +1 -1
  59. package/starburstCredential.d.ts +32 -20
  60. package/starburstCredential.js +5 -19
  61. package/starburstCredential.js.map +1 -1
  62. package/synapseCredential.d.ts +60 -42
  63. package/synapseCredential.js +9 -37
  64. package/synapseCredential.js.map +1 -1
  65. package/teradataCredential.d.ts +32 -5
  66. package/teradataCredential.js +5 -4
  67. package/teradataCredential.js.map +1 -1
  68. package/types/input.d.ts +61 -7
  69. package/types/output.d.ts +61 -7
@@ -2,20 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * Athena credential resource
4
4
  *
5
- * ## Example Usage
6
- *
7
- * ```typescript
8
- * import * as pulumi from "@pulumi/pulumi";
9
- * import * as dbtcloud from "@pulumi/dbtcloud";
10
- *
11
- * const example = new dbtcloud.AthenaCredential("example", {
12
- * projectId: exampleDbtcloudProject.id,
13
- * awsAccessKeyId: "your-access-key-id",
14
- * awsSecretAccessKey: "your-secret-access-key",
15
- * schema: "your_schema",
16
- * });
17
- * ```
18
- *
19
5
  * ## Import
20
6
  *
21
7
  * using import blocks (requires Terraform >= 1.5)
@@ -53,13 +39,31 @@ export declare class AthenaCredential extends pulumi.CustomResource {
53
39
  */
54
40
  static isInstance(obj: any): obj is AthenaCredential;
55
41
  /**
56
- * AWS access key ID for Athena user
42
+ * AWS access key ID for Athena user. Consider using `awsAccessKeyIdWo` instead, which is not stored in state.
43
+ */
44
+ readonly awsAccessKeyId: pulumi.Output<string | undefined>;
45
+ /**
46
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
47
+ * Write-only alternative to `awsAccessKeyId`. The value is not stored in state. Requires `awsAccessKeyIdWoVersion` to trigger updates.
48
+ */
49
+ readonly awsAccessKeyIdWo: pulumi.Output<string | undefined>;
50
+ /**
51
+ * Version number for `awsAccessKeyIdWo`. Increment this value to trigger an update of the AWS access key ID when using `awsAccessKeyIdWo`.
57
52
  */
58
- readonly awsAccessKeyId: pulumi.Output<string>;
53
+ readonly awsAccessKeyIdWoVersion: pulumi.Output<number | undefined>;
59
54
  /**
60
- * AWS secret access key for Athena user
55
+ * AWS secret access key for Athena user. Consider using `awsSecretAccessKeyWo` instead, which is not stored in state.
61
56
  */
62
- readonly awsSecretAccessKey: pulumi.Output<string>;
57
+ readonly awsSecretAccessKey: pulumi.Output<string | undefined>;
58
+ /**
59
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
60
+ * Write-only alternative to `awsSecretAccessKey`. The value is not stored in state. Requires `awsSecretAccessKeyWoVersion` to trigger updates.
61
+ */
62
+ readonly awsSecretAccessKeyWo: pulumi.Output<string | undefined>;
63
+ /**
64
+ * Version number for `awsSecretAccessKeyWo`. Increment this value to trigger an update of the AWS secret access key when using `awsSecretAccessKeyWo`.
65
+ */
66
+ readonly awsSecretAccessKeyWoVersion: pulumi.Output<number | undefined>;
63
67
  /**
64
68
  * The internal credential ID
65
69
  */
@@ -86,13 +90,31 @@ export declare class AthenaCredential extends pulumi.CustomResource {
86
90
  */
87
91
  export interface AthenaCredentialState {
88
92
  /**
89
- * AWS access key ID for Athena user
93
+ * AWS access key ID for Athena user. Consider using `awsAccessKeyIdWo` instead, which is not stored in state.
90
94
  */
91
95
  awsAccessKeyId?: pulumi.Input<string>;
92
96
  /**
93
- * AWS secret access key for Athena user
97
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
98
+ * Write-only alternative to `awsAccessKeyId`. The value is not stored in state. Requires `awsAccessKeyIdWoVersion` to trigger updates.
99
+ */
100
+ awsAccessKeyIdWo?: pulumi.Input<string>;
101
+ /**
102
+ * Version number for `awsAccessKeyIdWo`. Increment this value to trigger an update of the AWS access key ID when using `awsAccessKeyIdWo`.
103
+ */
104
+ awsAccessKeyIdWoVersion?: pulumi.Input<number>;
105
+ /**
106
+ * AWS secret access key for Athena user. Consider using `awsSecretAccessKeyWo` instead, which is not stored in state.
94
107
  */
95
108
  awsSecretAccessKey?: pulumi.Input<string>;
109
+ /**
110
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
111
+ * Write-only alternative to `awsSecretAccessKey`. The value is not stored in state. Requires `awsSecretAccessKeyWoVersion` to trigger updates.
112
+ */
113
+ awsSecretAccessKeyWo?: pulumi.Input<string>;
114
+ /**
115
+ * Version number for `awsSecretAccessKeyWo`. Increment this value to trigger an update of the AWS secret access key when using `awsSecretAccessKeyWo`.
116
+ */
117
+ awsSecretAccessKeyWoVersion?: pulumi.Input<number>;
96
118
  /**
97
119
  * The internal credential ID
98
120
  */
@@ -111,13 +133,31 @@ export interface AthenaCredentialState {
111
133
  */
112
134
  export interface AthenaCredentialArgs {
113
135
  /**
114
- * AWS access key ID for Athena user
136
+ * AWS access key ID for Athena user. Consider using `awsAccessKeyIdWo` instead, which is not stored in state.
137
+ */
138
+ awsAccessKeyId?: pulumi.Input<string>;
139
+ /**
140
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
141
+ * Write-only alternative to `awsAccessKeyId`. The value is not stored in state. Requires `awsAccessKeyIdWoVersion` to trigger updates.
142
+ */
143
+ awsAccessKeyIdWo?: pulumi.Input<string>;
144
+ /**
145
+ * Version number for `awsAccessKeyIdWo`. Increment this value to trigger an update of the AWS access key ID when using `awsAccessKeyIdWo`.
146
+ */
147
+ awsAccessKeyIdWoVersion?: pulumi.Input<number>;
148
+ /**
149
+ * AWS secret access key for Athena user. Consider using `awsSecretAccessKeyWo` instead, which is not stored in state.
150
+ */
151
+ awsSecretAccessKey?: pulumi.Input<string>;
152
+ /**
153
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
154
+ * Write-only alternative to `awsSecretAccessKey`. The value is not stored in state. Requires `awsSecretAccessKeyWoVersion` to trigger updates.
115
155
  */
116
- awsAccessKeyId: pulumi.Input<string>;
156
+ awsSecretAccessKeyWo?: pulumi.Input<string>;
117
157
  /**
118
- * AWS secret access key for Athena user
158
+ * Version number for `awsSecretAccessKeyWo`. Increment this value to trigger an update of the AWS secret access key when using `awsSecretAccessKeyWo`.
119
159
  */
120
- awsSecretAccessKey: pulumi.Input<string>;
160
+ awsSecretAccessKeyWoVersion?: pulumi.Input<number>;
121
161
  /**
122
162
  * Project ID to create the Athena credential in
123
163
  */
@@ -8,20 +8,6 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * Athena credential resource
10
10
  *
11
- * ## Example Usage
12
- *
13
- * ```typescript
14
- * import * as pulumi from "@pulumi/pulumi";
15
- * import * as dbtcloud from "@pulumi/dbtcloud";
16
- *
17
- * const example = new dbtcloud.AthenaCredential("example", {
18
- * projectId: exampleDbtcloudProject.id,
19
- * awsAccessKeyId: "your-access-key-id",
20
- * awsSecretAccessKey: "your-secret-access-key",
21
- * schema: "your_schema",
22
- * });
23
- * ```
24
- *
25
11
  * ## Import
26
12
  *
27
13
  * using import blocks (requires Terraform >= 1.5)
@@ -71,19 +57,17 @@ class AthenaCredential extends pulumi.CustomResource {
71
57
  if (opts.id) {
72
58
  const state = argsOrState;
73
59
  resourceInputs["awsAccessKeyId"] = state?.awsAccessKeyId;
60
+ resourceInputs["awsAccessKeyIdWo"] = state?.awsAccessKeyIdWo;
61
+ resourceInputs["awsAccessKeyIdWoVersion"] = state?.awsAccessKeyIdWoVersion;
74
62
  resourceInputs["awsSecretAccessKey"] = state?.awsSecretAccessKey;
63
+ resourceInputs["awsSecretAccessKeyWo"] = state?.awsSecretAccessKeyWo;
64
+ resourceInputs["awsSecretAccessKeyWoVersion"] = state?.awsSecretAccessKeyWoVersion;
75
65
  resourceInputs["credentialId"] = state?.credentialId;
76
66
  resourceInputs["projectId"] = state?.projectId;
77
67
  resourceInputs["schema"] = state?.schema;
78
68
  }
79
69
  else {
80
70
  const args = argsOrState;
81
- if (args?.awsAccessKeyId === undefined && !opts.urn) {
82
- throw new Error("Missing required property 'awsAccessKeyId'");
83
- }
84
- if (args?.awsSecretAccessKey === undefined && !opts.urn) {
85
- throw new Error("Missing required property 'awsSecretAccessKey'");
86
- }
87
71
  if (args?.projectId === undefined && !opts.urn) {
88
72
  throw new Error("Missing required property 'projectId'");
89
73
  }
@@ -91,13 +75,17 @@ class AthenaCredential extends pulumi.CustomResource {
91
75
  throw new Error("Missing required property 'schema'");
92
76
  }
93
77
  resourceInputs["awsAccessKeyId"] = args?.awsAccessKeyId ? pulumi.secret(args.awsAccessKeyId) : undefined;
78
+ resourceInputs["awsAccessKeyIdWo"] = args?.awsAccessKeyIdWo ? pulumi.secret(args.awsAccessKeyIdWo) : undefined;
79
+ resourceInputs["awsAccessKeyIdWoVersion"] = args?.awsAccessKeyIdWoVersion;
94
80
  resourceInputs["awsSecretAccessKey"] = args?.awsSecretAccessKey ? pulumi.secret(args.awsSecretAccessKey) : undefined;
81
+ resourceInputs["awsSecretAccessKeyWo"] = args?.awsSecretAccessKeyWo ? pulumi.secret(args.awsSecretAccessKeyWo) : undefined;
82
+ resourceInputs["awsSecretAccessKeyWoVersion"] = args?.awsSecretAccessKeyWoVersion;
95
83
  resourceInputs["projectId"] = args?.projectId;
96
84
  resourceInputs["schema"] = args?.schema;
97
85
  resourceInputs["credentialId"] = undefined /*out*/;
98
86
  }
99
87
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
100
- const secretOpts = { additionalSecretOutputs: ["awsAccessKeyId", "awsSecretAccessKey"] };
88
+ const secretOpts = { additionalSecretOutputs: ["awsAccessKeyId", "awsAccessKeyIdWo", "awsSecretAccessKey", "awsSecretAccessKeyWo"] };
101
89
  opts = pulumi.mergeOptions(opts, secretOpts);
102
90
  super(AthenaCredential.__pulumiType, name, resourceInputs, opts);
103
91
  }
@@ -1 +1 @@
1
- {"version":3,"file":"athenaCredential.js","sourceRoot":"","sources":["../athenaCredential.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"athenaCredential.js","sourceRoot":"","sources":["../athenaCredential.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,339 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages an SSO auth provider for a dbt Cloud account. Supports SAML/Okta, Azure Active Directory (single-tenant, multi-tenant), and Google Workspace.
4
+ *
5
+ * Only one auth provider may exist per account. Requires the SSO feature enabled on the account (enterprise plans only).
6
+ *
7
+ * See the [documentation](https://docs.getdbt.com/docs/cloud/manage-access/sso-overview) for more information.
8
+ *
9
+ * ## Import
10
+ *
11
+ * Import an existing auth provider by its numeric ID.
12
+ * The ID can be found via the dbt Cloud API:
13
+ * GET /api/v3/accounts/{account_id}/auth-provider/
14
+ *
15
+ * ```sh
16
+ * $ pulumi import dbtcloud:index/authProvider:AuthProvider example 12345
17
+ * ```
18
+ */
19
+ export declare class AuthProvider extends pulumi.CustomResource {
20
+ /**
21
+ * Get an existing AuthProvider resource's state with the given name, ID, and optional extra
22
+ * properties used to qualify the lookup.
23
+ *
24
+ * @param name The _unique_ name of the resulting resource.
25
+ * @param id The _unique_ provider ID of the resource to lookup.
26
+ * @param state Any extra arguments used during the lookup.
27
+ * @param opts Optional settings to control the behavior of the CustomResource.
28
+ */
29
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AuthProviderState, opts?: pulumi.CustomResourceOptions): AuthProvider;
30
+ /**
31
+ * Returns true if the given object is an instance of AuthProvider. This is designed to work even
32
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
33
+ */
34
+ static isInstance(obj: any): obj is AuthProvider;
35
+ /**
36
+ * Google Workspace admin OAuth refresh token used to fetch group memberships.
37
+ */
38
+ readonly adminRefreshToken: pulumi.Output<string | undefined>;
39
+ /**
40
+ * When true (default), users can still log in with email and password as a fallback. Set to false to enforce SSO-only access.
41
+ */
42
+ readonly allowPasswordBackdoor: pulumi.Output<boolean>;
43
+ /**
44
+ * JSON map of SAML attribute names to dbt Cloud user fields.
45
+ */
46
+ readonly attributeMap: pulumi.Output<string>;
47
+ /**
48
+ * OAuth authorization URL for Google Workspace. May be auto-populated server-side.
49
+ */
50
+ readonly authorizationUrl: pulumi.Output<string>;
51
+ /**
52
+ * SAML X.509 certificate (PEM format). Sensitive — stored in state. Consider using `certWo` instead. Conflicts with `certWo`.
53
+ */
54
+ readonly cert: pulumi.Output<string | undefined>;
55
+ /**
56
+ * Expiry date of the SAML X.509 certificate (SAML/Okta only).
57
+ */
58
+ readonly certExpiryDate: pulumi.Output<string>;
59
+ /**
60
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
61
+ * Write-only alternative to `cert`. Not stored in state. Use `certWoVersion` to trigger updates. Conflicts with `cert`.
62
+ */
63
+ readonly certWo: pulumi.Output<string | undefined>;
64
+ /**
65
+ * Increment to rotate `certWo` without changing the value.
66
+ */
67
+ readonly certWoVersion: pulumi.Output<number | undefined>;
68
+ /**
69
+ * OAuth client ID. Required for Azure AD and Google Workspace providers. Not returned by the API after save (encrypted at rest).
70
+ */
71
+ readonly clientId: pulumi.Output<string>;
72
+ /**
73
+ * OAuth client secret. Required for Azure AD and Google Workspace providers. Sensitive — stored in state. Consider using `clientSecretWo` instead. Conflicts with `clientSecretWo`.
74
+ */
75
+ readonly clientSecret: pulumi.Output<string | undefined>;
76
+ /**
77
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
78
+ * Write-only alternative to `clientSecret`. Not stored in state. Use `clientSecretWoVersion` to trigger updates. Conflicts with `clientSecret`.
79
+ */
80
+ readonly clientSecretWo: pulumi.Output<string | undefined>;
81
+ /**
82
+ * Increment to rotate `clientSecretWo` without changing the value.
83
+ */
84
+ readonly clientSecretWoVersion: pulumi.Output<number | undefined>;
85
+ readonly createdAt: pulumi.Output<string>;
86
+ /**
87
+ * Primary domain for the Azure AD or Google Workspace tenant.
88
+ */
89
+ readonly domain: pulumi.Output<string | undefined>;
90
+ /**
91
+ * SAML entity ID (Issuer) from your identity provider. Required for `saml` and `okta`.
92
+ */
93
+ readonly entityId: pulumi.Output<string | undefined>;
94
+ /**
95
+ * Google Workspace admin email used to fetch group memberships.
96
+ */
97
+ readonly gsuiteAdminId: pulumi.Output<string | undefined>;
98
+ /**
99
+ * Whether to include transitive (indirect) group memberships from Azure AD. Defaults to true.
100
+ */
101
+ readonly includeIndirectGroups: pulumi.Output<boolean>;
102
+ /**
103
+ * The SSO login URL for the account, auto-generated from the slug.
104
+ */
105
+ readonly loginUrl: pulumi.Output<string>;
106
+ /**
107
+ * Maximum number of Azure AD groups to fetch per user. Defaults to 250.
108
+ */
109
+ readonly maxGroupsToRetrieve: pulumi.Output<number>;
110
+ /**
111
+ * Whether to sign SAML authentication requests. Defaults to false.
112
+ */
113
+ readonly signRequest: pulumi.Output<boolean>;
114
+ /**
115
+ * URL-safe identifier used in the SSO login URL. Auto-generated if omitted. Immutable on accounts where auto-slug enforcement is enabled.
116
+ */
117
+ readonly slug: pulumi.Output<string>;
118
+ /**
119
+ * SAML Single Sign-On URL from your identity provider. Required for `saml` and `okta`.
120
+ */
121
+ readonly ssoUrl: pulumi.Output<string | undefined>;
122
+ /**
123
+ * The state of the auth provider (1 = active).
124
+ */
125
+ readonly state: pulumi.Output<number>;
126
+ /**
127
+ * Azure AD tenant ID. Required for `azureSingleTenant`.
128
+ */
129
+ readonly tenantId: pulumi.Output<string | undefined>;
130
+ /**
131
+ * The SSO provider type. One of: `saml`, `okta`, `gsuite`, `azureSingleTenant`, `azureMultiTenant`, `azureActiveDirectory`. Changing this value forces a new resource.
132
+ */
133
+ readonly type: pulumi.Output<string>;
134
+ readonly updatedAt: pulumi.Output<string>;
135
+ /**
136
+ * Create a AuthProvider resource with the given unique name, arguments, and options.
137
+ *
138
+ * @param name The _unique_ name of the resource.
139
+ * @param args The arguments to use to populate this resource's properties.
140
+ * @param opts A bag of options that control this resource's behavior.
141
+ */
142
+ constructor(name: string, args: AuthProviderArgs, opts?: pulumi.CustomResourceOptions);
143
+ }
144
+ /**
145
+ * Input properties used for looking up and filtering AuthProvider resources.
146
+ */
147
+ export interface AuthProviderState {
148
+ /**
149
+ * Google Workspace admin OAuth refresh token used to fetch group memberships.
150
+ */
151
+ adminRefreshToken?: pulumi.Input<string>;
152
+ /**
153
+ * When true (default), users can still log in with email and password as a fallback. Set to false to enforce SSO-only access.
154
+ */
155
+ allowPasswordBackdoor?: pulumi.Input<boolean>;
156
+ /**
157
+ * JSON map of SAML attribute names to dbt Cloud user fields.
158
+ */
159
+ attributeMap?: pulumi.Input<string>;
160
+ /**
161
+ * OAuth authorization URL for Google Workspace. May be auto-populated server-side.
162
+ */
163
+ authorizationUrl?: pulumi.Input<string>;
164
+ /**
165
+ * SAML X.509 certificate (PEM format). Sensitive — stored in state. Consider using `certWo` instead. Conflicts with `certWo`.
166
+ */
167
+ cert?: pulumi.Input<string>;
168
+ /**
169
+ * Expiry date of the SAML X.509 certificate (SAML/Okta only).
170
+ */
171
+ certExpiryDate?: pulumi.Input<string>;
172
+ /**
173
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
174
+ * Write-only alternative to `cert`. Not stored in state. Use `certWoVersion` to trigger updates. Conflicts with `cert`.
175
+ */
176
+ certWo?: pulumi.Input<string>;
177
+ /**
178
+ * Increment to rotate `certWo` without changing the value.
179
+ */
180
+ certWoVersion?: pulumi.Input<number>;
181
+ /**
182
+ * OAuth client ID. Required for Azure AD and Google Workspace providers. Not returned by the API after save (encrypted at rest).
183
+ */
184
+ clientId?: pulumi.Input<string>;
185
+ /**
186
+ * OAuth client secret. Required for Azure AD and Google Workspace providers. Sensitive — stored in state. Consider using `clientSecretWo` instead. Conflicts with `clientSecretWo`.
187
+ */
188
+ clientSecret?: pulumi.Input<string>;
189
+ /**
190
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
191
+ * Write-only alternative to `clientSecret`. Not stored in state. Use `clientSecretWoVersion` to trigger updates. Conflicts with `clientSecret`.
192
+ */
193
+ clientSecretWo?: pulumi.Input<string>;
194
+ /**
195
+ * Increment to rotate `clientSecretWo` without changing the value.
196
+ */
197
+ clientSecretWoVersion?: pulumi.Input<number>;
198
+ createdAt?: pulumi.Input<string>;
199
+ /**
200
+ * Primary domain for the Azure AD or Google Workspace tenant.
201
+ */
202
+ domain?: pulumi.Input<string>;
203
+ /**
204
+ * SAML entity ID (Issuer) from your identity provider. Required for `saml` and `okta`.
205
+ */
206
+ entityId?: pulumi.Input<string>;
207
+ /**
208
+ * Google Workspace admin email used to fetch group memberships.
209
+ */
210
+ gsuiteAdminId?: pulumi.Input<string>;
211
+ /**
212
+ * Whether to include transitive (indirect) group memberships from Azure AD. Defaults to true.
213
+ */
214
+ includeIndirectGroups?: pulumi.Input<boolean>;
215
+ /**
216
+ * The SSO login URL for the account, auto-generated from the slug.
217
+ */
218
+ loginUrl?: pulumi.Input<string>;
219
+ /**
220
+ * Maximum number of Azure AD groups to fetch per user. Defaults to 250.
221
+ */
222
+ maxGroupsToRetrieve?: pulumi.Input<number>;
223
+ /**
224
+ * Whether to sign SAML authentication requests. Defaults to false.
225
+ */
226
+ signRequest?: pulumi.Input<boolean>;
227
+ /**
228
+ * URL-safe identifier used in the SSO login URL. Auto-generated if omitted. Immutable on accounts where auto-slug enforcement is enabled.
229
+ */
230
+ slug?: pulumi.Input<string>;
231
+ /**
232
+ * SAML Single Sign-On URL from your identity provider. Required for `saml` and `okta`.
233
+ */
234
+ ssoUrl?: pulumi.Input<string>;
235
+ /**
236
+ * The state of the auth provider (1 = active).
237
+ */
238
+ state?: pulumi.Input<number>;
239
+ /**
240
+ * Azure AD tenant ID. Required for `azureSingleTenant`.
241
+ */
242
+ tenantId?: pulumi.Input<string>;
243
+ /**
244
+ * The SSO provider type. One of: `saml`, `okta`, `gsuite`, `azureSingleTenant`, `azureMultiTenant`, `azureActiveDirectory`. Changing this value forces a new resource.
245
+ */
246
+ type?: pulumi.Input<string>;
247
+ updatedAt?: pulumi.Input<string>;
248
+ }
249
+ /**
250
+ * The set of arguments for constructing a AuthProvider resource.
251
+ */
252
+ export interface AuthProviderArgs {
253
+ /**
254
+ * Google Workspace admin OAuth refresh token used to fetch group memberships.
255
+ */
256
+ adminRefreshToken?: pulumi.Input<string>;
257
+ /**
258
+ * When true (default), users can still log in with email and password as a fallback. Set to false to enforce SSO-only access.
259
+ */
260
+ allowPasswordBackdoor?: pulumi.Input<boolean>;
261
+ /**
262
+ * JSON map of SAML attribute names to dbt Cloud user fields.
263
+ */
264
+ attributeMap?: pulumi.Input<string>;
265
+ /**
266
+ * OAuth authorization URL for Google Workspace. May be auto-populated server-side.
267
+ */
268
+ authorizationUrl?: pulumi.Input<string>;
269
+ /**
270
+ * SAML X.509 certificate (PEM format). Sensitive — stored in state. Consider using `certWo` instead. Conflicts with `certWo`.
271
+ */
272
+ cert?: pulumi.Input<string>;
273
+ /**
274
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
275
+ * Write-only alternative to `cert`. Not stored in state. Use `certWoVersion` to trigger updates. Conflicts with `cert`.
276
+ */
277
+ certWo?: pulumi.Input<string>;
278
+ /**
279
+ * Increment to rotate `certWo` without changing the value.
280
+ */
281
+ certWoVersion?: pulumi.Input<number>;
282
+ /**
283
+ * OAuth client ID. Required for Azure AD and Google Workspace providers. Not returned by the API after save (encrypted at rest).
284
+ */
285
+ clientId?: pulumi.Input<string>;
286
+ /**
287
+ * OAuth client secret. Required for Azure AD and Google Workspace providers. Sensitive — stored in state. Consider using `clientSecretWo` instead. Conflicts with `clientSecretWo`.
288
+ */
289
+ clientSecret?: pulumi.Input<string>;
290
+ /**
291
+ * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
292
+ * Write-only alternative to `clientSecret`. Not stored in state. Use `clientSecretWoVersion` to trigger updates. Conflicts with `clientSecret`.
293
+ */
294
+ clientSecretWo?: pulumi.Input<string>;
295
+ /**
296
+ * Increment to rotate `clientSecretWo` without changing the value.
297
+ */
298
+ clientSecretWoVersion?: pulumi.Input<number>;
299
+ /**
300
+ * Primary domain for the Azure AD or Google Workspace tenant.
301
+ */
302
+ domain?: pulumi.Input<string>;
303
+ /**
304
+ * SAML entity ID (Issuer) from your identity provider. Required for `saml` and `okta`.
305
+ */
306
+ entityId?: pulumi.Input<string>;
307
+ /**
308
+ * Google Workspace admin email used to fetch group memberships.
309
+ */
310
+ gsuiteAdminId?: pulumi.Input<string>;
311
+ /**
312
+ * Whether to include transitive (indirect) group memberships from Azure AD. Defaults to true.
313
+ */
314
+ includeIndirectGroups?: pulumi.Input<boolean>;
315
+ /**
316
+ * Maximum number of Azure AD groups to fetch per user. Defaults to 250.
317
+ */
318
+ maxGroupsToRetrieve?: pulumi.Input<number>;
319
+ /**
320
+ * Whether to sign SAML authentication requests. Defaults to false.
321
+ */
322
+ signRequest?: pulumi.Input<boolean>;
323
+ /**
324
+ * URL-safe identifier used in the SSO login URL. Auto-generated if omitted. Immutable on accounts where auto-slug enforcement is enabled.
325
+ */
326
+ slug?: pulumi.Input<string>;
327
+ /**
328
+ * SAML Single Sign-On URL from your identity provider. Required for `saml` and `okta`.
329
+ */
330
+ ssoUrl?: pulumi.Input<string>;
331
+ /**
332
+ * Azure AD tenant ID. Required for `azureSingleTenant`.
333
+ */
334
+ tenantId?: pulumi.Input<string>;
335
+ /**
336
+ * The SSO provider type. One of: `saml`, `okta`, `gsuite`, `azureSingleTenant`, `azureMultiTenant`, `azureActiveDirectory`. Changing this value forces a new resource.
337
+ */
338
+ type: pulumi.Input<string>;
339
+ }
@@ -0,0 +1,121 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.AuthProvider = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Manages an SSO auth provider for a dbt Cloud account. Supports SAML/Okta, Azure Active Directory (single-tenant, multi-tenant), and Google Workspace.
10
+ *
11
+ * Only one auth provider may exist per account. Requires the SSO feature enabled on the account (enterprise plans only).
12
+ *
13
+ * See the [documentation](https://docs.getdbt.com/docs/cloud/manage-access/sso-overview) for more information.
14
+ *
15
+ * ## Import
16
+ *
17
+ * Import an existing auth provider by its numeric ID.
18
+ * The ID can be found via the dbt Cloud API:
19
+ * GET /api/v3/accounts/{account_id}/auth-provider/
20
+ *
21
+ * ```sh
22
+ * $ pulumi import dbtcloud:index/authProvider:AuthProvider example 12345
23
+ * ```
24
+ */
25
+ class AuthProvider extends pulumi.CustomResource {
26
+ /**
27
+ * Get an existing AuthProvider resource's state with the given name, ID, and optional extra
28
+ * properties used to qualify the lookup.
29
+ *
30
+ * @param name The _unique_ name of the resulting resource.
31
+ * @param id The _unique_ provider ID of the resource to lookup.
32
+ * @param state Any extra arguments used during the lookup.
33
+ * @param opts Optional settings to control the behavior of the CustomResource.
34
+ */
35
+ static get(name, id, state, opts) {
36
+ return new AuthProvider(name, state, { ...opts, id: id });
37
+ }
38
+ /**
39
+ * Returns true if the given object is an instance of AuthProvider. This is designed to work even
40
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
41
+ */
42
+ static isInstance(obj) {
43
+ if (obj === undefined || obj === null) {
44
+ return false;
45
+ }
46
+ return obj['__pulumiType'] === AuthProvider.__pulumiType;
47
+ }
48
+ constructor(name, argsOrState, opts) {
49
+ let resourceInputs = {};
50
+ opts = opts || {};
51
+ if (opts.id) {
52
+ const state = argsOrState;
53
+ resourceInputs["adminRefreshToken"] = state?.adminRefreshToken;
54
+ resourceInputs["allowPasswordBackdoor"] = state?.allowPasswordBackdoor;
55
+ resourceInputs["attributeMap"] = state?.attributeMap;
56
+ resourceInputs["authorizationUrl"] = state?.authorizationUrl;
57
+ resourceInputs["cert"] = state?.cert;
58
+ resourceInputs["certExpiryDate"] = state?.certExpiryDate;
59
+ resourceInputs["certWo"] = state?.certWo;
60
+ resourceInputs["certWoVersion"] = state?.certWoVersion;
61
+ resourceInputs["clientId"] = state?.clientId;
62
+ resourceInputs["clientSecret"] = state?.clientSecret;
63
+ resourceInputs["clientSecretWo"] = state?.clientSecretWo;
64
+ resourceInputs["clientSecretWoVersion"] = state?.clientSecretWoVersion;
65
+ resourceInputs["createdAt"] = state?.createdAt;
66
+ resourceInputs["domain"] = state?.domain;
67
+ resourceInputs["entityId"] = state?.entityId;
68
+ resourceInputs["gsuiteAdminId"] = state?.gsuiteAdminId;
69
+ resourceInputs["includeIndirectGroups"] = state?.includeIndirectGroups;
70
+ resourceInputs["loginUrl"] = state?.loginUrl;
71
+ resourceInputs["maxGroupsToRetrieve"] = state?.maxGroupsToRetrieve;
72
+ resourceInputs["signRequest"] = state?.signRequest;
73
+ resourceInputs["slug"] = state?.slug;
74
+ resourceInputs["ssoUrl"] = state?.ssoUrl;
75
+ resourceInputs["state"] = state?.state;
76
+ resourceInputs["tenantId"] = state?.tenantId;
77
+ resourceInputs["type"] = state?.type;
78
+ resourceInputs["updatedAt"] = state?.updatedAt;
79
+ }
80
+ else {
81
+ const args = argsOrState;
82
+ if (args?.type === undefined && !opts.urn) {
83
+ throw new Error("Missing required property 'type'");
84
+ }
85
+ resourceInputs["adminRefreshToken"] = args?.adminRefreshToken ? pulumi.secret(args.adminRefreshToken) : undefined;
86
+ resourceInputs["allowPasswordBackdoor"] = args?.allowPasswordBackdoor;
87
+ resourceInputs["attributeMap"] = args?.attributeMap;
88
+ resourceInputs["authorizationUrl"] = args?.authorizationUrl;
89
+ resourceInputs["cert"] = args?.cert ? pulumi.secret(args.cert) : undefined;
90
+ resourceInputs["certWo"] = args?.certWo ? pulumi.secret(args.certWo) : undefined;
91
+ resourceInputs["certWoVersion"] = args?.certWoVersion;
92
+ resourceInputs["clientId"] = args?.clientId;
93
+ resourceInputs["clientSecret"] = args?.clientSecret ? pulumi.secret(args.clientSecret) : undefined;
94
+ resourceInputs["clientSecretWo"] = args?.clientSecretWo ? pulumi.secret(args.clientSecretWo) : undefined;
95
+ resourceInputs["clientSecretWoVersion"] = args?.clientSecretWoVersion;
96
+ resourceInputs["domain"] = args?.domain;
97
+ resourceInputs["entityId"] = args?.entityId;
98
+ resourceInputs["gsuiteAdminId"] = args?.gsuiteAdminId;
99
+ resourceInputs["includeIndirectGroups"] = args?.includeIndirectGroups;
100
+ resourceInputs["maxGroupsToRetrieve"] = args?.maxGroupsToRetrieve;
101
+ resourceInputs["signRequest"] = args?.signRequest;
102
+ resourceInputs["slug"] = args?.slug;
103
+ resourceInputs["ssoUrl"] = args?.ssoUrl;
104
+ resourceInputs["tenantId"] = args?.tenantId ? pulumi.secret(args.tenantId) : undefined;
105
+ resourceInputs["type"] = args?.type;
106
+ resourceInputs["certExpiryDate"] = undefined /*out*/;
107
+ resourceInputs["createdAt"] = undefined /*out*/;
108
+ resourceInputs["loginUrl"] = undefined /*out*/;
109
+ resourceInputs["state"] = undefined /*out*/;
110
+ resourceInputs["updatedAt"] = undefined /*out*/;
111
+ }
112
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
113
+ const secretOpts = { additionalSecretOutputs: ["adminRefreshToken", "cert", "certWo", "clientSecret", "clientSecretWo", "tenantId"] };
114
+ opts = pulumi.mergeOptions(opts, secretOpts);
115
+ super(AuthProvider.__pulumiType, name, resourceInputs, opts);
116
+ }
117
+ }
118
+ exports.AuthProvider = AuthProvider;
119
+ /** @internal */
120
+ AuthProvider.__pulumiType = 'dbtcloud:index/authProvider:AuthProvider';
121
+ //# sourceMappingURL=authProvider.js.map