forked from IBM-Cloud/terraform-provider-ibm
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 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,40 @@ | ||
--- | ||
|
||
subcategory: "Power Systems" | ||
layout: "ibm" | ||
page_title: "IBM: pi_workspace" | ||
description: |- | ||
Manages a workspace in the Power Virtual Server cloud. | ||
--- | ||
|
||
# ibm_pi_workspace | ||
|
||
Create or Delete a PowerVS Workspace | ||
|
||
## Example usage | ||
|
||
```terraform | ||
resource "ibm_pi_workspace" "powervs_service_instance" { | ||
pi_name = "test-name" | ||
pi_datacenter = "us-east" | ||
pi_resource_group = "3498fj27dhdskslhfghlu3heuw" | ||
pi_plan = "public" | ||
} | ||
``` | ||
|
||
## Notes | ||
|
||
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints. | ||
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows: | ||
- `region` - `lon` | ||
- `zone` - `lon04` | ||
|
||
## Attribute reference | ||
|
||
Review the argument references that you can specify for your resource. | ||
|
||
- `id - (String) Workspace ID. | ||
- `pi_name` - (Required, String) "The desired name of the workspace". | ||
- `pi_datacenter` - (Required, String) "The datacenter location where the instance should be hosted" | ||
- `pi_resource_group` - (Required, String) "The ID of the resource group" | ||
- `pi_plan` - (Required, String) "Plan associated with the offering; Valid values are \"public\" or \"private\"." |