You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`dbt_version` (String) Version number of dbt to use in this environment. It needs to be in the format `major.minor.0-latest`or `major.minor.0-pre`, e.g. `1.5.0-latest`
53
+
-`dbt_version` (String) Version number of dbt to use in this environment. It needs to be in the format `major.minor.0-latest`(e.g. `1.5.0-latest`), `major.minor.0-pre` or `versionless`. In a future version of the provider `versionless` will be the default if no version is provided
54
54
-`name` (String) Environment name
55
55
-`project_id` (Number) Project ID to create the environment in
56
56
-`type` (String) The type of environment (must be either development or deployment)
-`azure_active_directory_project_id` (String) The Azure Dev Ops project ID. It can be retrieved via the Azure API or using the data source `dbtcloud_azure_dev_ops_project` and the project name - (for ADO native integration only)
107
107
-`azure_active_directory_repository_id` (String) The Azure Dev Ops repository ID. It can be retrieved via the Azure API or using the data source `dbtcloud_azure_dev_ops_repository` along with the ADO Project ID and the repository name - (for ADO native integration only)
108
108
-`azure_bypass_webhook_registration_failure` (Boolean) If set to False (the default), the connection will fail if the service user doesn't have access to set webhooks (required for auto-triggering CI jobs). If set to True, the connection will be successful but no automated CI job will be triggered - (for ADO native integration only)
109
-
-`fetch_deploy_key` (Boolean) Whether we should return the public deploy key - (for the `deploy_key` strategy)
109
+
-`fetch_deploy_key` (Boolean, Deprecated) Whether we should return the public deploy key - (for the `deploy_key` strategy)
110
110
-`git_clone_strategy` (String) Git clone strategy for the repository. Can be `deploy_key` (default) for cloning via SSH Deploy Key, `github_app` for GitHub native integration, `deploy_token` for the GitLab native integration and `azure_active_directory_app` for ADO native integration
111
111
-`github_installation_id` (Number) Identifier for the GitHub App - (for GitHub native integration only)
112
112
-`gitlab_project_id` (Number) Identifier for the Gitlab project - (for GitLab native integration only)
Copy file name to clipboardExpand all lines: pkg/data_sources/repository.go
+10-3
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ var repositorySchema = map[string]*schema.Schema{
25
25
Type: schema.TypeBool,
26
26
Optional: true,
27
27
Default: false,
28
+
Deprecated: "This field is deprecated and will be removed in a future version of the provider. The key is always fetched when the clone strategy is `deploy_key`",
28
29
Description: "Whether we should return the public deploy key",
Description: "Version number of dbt to use in this environment. It needs to be in the format `major.minor.0-latest` or `major.minor.0-pre`, e.g. `1.5.0-latest`",
47
+
Description: "Version number of dbt to use in this environment. It needs to be in the format `major.minor.0-latest` (e.g. `1.5.0-latest`), `major.minor.0-pre` or `versionless`. In a future version of the provider `versionless` will be the default if no version is provided",
Description: "Whether we should return the public deploy key - (for the `deploy_key` strategy)",
94
+
Deprecated: "This field is deprecated and will be removed in a future version of the provider, please remove it from your configuration. The key is always fetched when the clone strategy is `deploy_key`",
0 commit comments