-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master-dev'
- Loading branch information
Showing
54 changed files
with
6,485 additions
and
176 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
subcategory: "Auto Scaling" | ||
subcategory: "Auto Scaling (AS)" | ||
--- | ||
|
||
# hcs_as_configurations | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
subcategory: "Auto Scaling" | ||
subcategory: "Auto Scaling (AS)" | ||
--- | ||
|
||
# hcs_as_groups | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
subcategory: "SFS Turbo" | ||
layout: "huaweicloudstack" | ||
page_title: "HuaweiCloudStack: hcs_sfs_turbos" | ||
description: "" | ||
--- | ||
|
||
# hcs_sfs_turbos | ||
|
||
Use this data source to get the list of the available SFS turbos. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
variable "sfs_turbo_name" {} | ||
data "hcs_sfs_turbos" "test" { | ||
name = var.sfs_turbo_name | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `region` - (Optional, String) Specifies the region in which to obtain the SFS turbo file systems. | ||
If omitted, the provider-level region will be used. | ||
|
||
* `name` - (Optional, String) Specifies the name of the SFS turbo file system. | ||
|
||
* `size` - (Optional, Int) Specifies the capacity of the SFS turbo file system, in GB. | ||
|
||
* `share_proto` - (Optional, String) Specifies the protocol of the SFS turbo file system. The valid value is **NFS**. | ||
|
||
* `share_type` - (Optional, String) Specifies the type of the SFS turbo file system. | ||
Valid values are **sfsturbo.ssd** or **sfsturbo.hdd**. | ||
|
||
* `enterprise_project_id` - (Optional, String) The enterprise project ID of the SFS turbo file system. | ||
|
||
## Attribute Reference | ||
|
||
In addition to all arguments above, the following attributes are exported: | ||
|
||
* `id` - The data source ID. | ||
|
||
* `turbos` - The list of the SFS turbo file systems. The [object](#turbo) structure is documented below. | ||
|
||
<a name="turbo"></a> | ||
The `turbos` block supports: | ||
|
||
* `id` - The data source ID of the SFS turbo file system. | ||
|
||
* `name` - The name of the SFS turbo file system. | ||
|
||
* `size` - The capacity of the SFS turbo file system. | ||
|
||
* `share_proto` - The protocol of the SFS turbo file system. | ||
|
||
* `share_type` - The type of the SFS turbo file system. | ||
|
||
* `enterprise_project_id` - The enterprise project ID of the SFS turbo file system. | ||
|
||
* `version` - The version of the SFS turbo file system. | ||
|
||
* `enhanced` - Whether the SFS turbo file system is enhanced. | ||
|
||
* `availability_zone` - The availability zone where the SFS turbo file system is located. | ||
|
||
* `available_capacity` - The available capacity of the SFS turbo file system, in GB. | ||
|
||
* `export_location` - The mount point of the SFS turbo file system. | ||
|
||
* `crypt_key_id` - The ID of a KMS key to encrypt the SFS turbo file system. | ||
|
||
* `vpc_id` - The ID of the VPC to which the SFS turbo belongs. | ||
|
||
* `subnet_id` - The **network ID** of the subnet to which the SFS turbo belongs. | ||
|
||
* `security_group_id` - The ID of the security group to which the SFS turbo belongs. |
Oops, something went wrong.