-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bug fixes and improvements * Remove binary * Fix the nested fields for the stack component and stack data resource * Sort components in the stack data resource output * Add better error messages regarding missing or expired credentials * Add docs references to terraform modules * Add retry mechanism for service connector validation * Fully migrate to SDK v2 and properly handle 404 HTTP errors * Mark updating component type/flavor as a re-create op * Updated and tested all complete examples
- Loading branch information
1 parent
2d0ebfd
commit 1870e8a
Showing
30 changed files
with
1,711 additions
and
645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
page_title: "zenml_server Data Source - terraform-provider-zenml" | ||
subcategory: "" | ||
description: |- | ||
Data source for retrieving information about the ZenML server. | ||
--- | ||
|
||
# zenml_server (Data Source) | ||
|
||
Use this data source to retrieve information about the ZenML server. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "zenml_server" "server_info" { | ||
} | ||
output "version" { | ||
value = data.zenml_server.server_info.version | ||
} | ||
output "dashboard_url" { | ||
value = data.zenml_server.server_info.dashboard_url | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The `zenml_server` data source does not take any arguments. | ||
|
||
## Attributes Reference | ||
|
||
The following attributes are exported: | ||
|
||
* `id` - The ID of the server. | ||
* `name` - The name of the server. | ||
* `version` - The version of the server. | ||
* `deployment_type` - The deployment type of the server. | ||
* `auth_scheme` - The authentication scheme of the server. | ||
* `server_url` - The URL where the server API is hosted. | ||
* `dashboard_url` - The URL where the server's dashboard is hosted. | ||
* `metadata` - A map of metadata associated with the server. | ||
|
||
## Import | ||
|
||
The server info can be imported using the `id`, e.g. | ||
|
||
``` | ||
$ terraform import zenml_server.server_info 12345678-1234-1234-1234-123456789012 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.