Skip to content

Commit ff374f8

Browse files
authored
Remove warnings from terraform the remainder of the markdown files (IBM-Cloud#6101)
1 parent 16476bb commit ff374f8

11 files changed

+107
-67
lines changed

website/docs/d/pi_console_languages.html.markdown

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,37 +7,43 @@ description: |-
77
---
88

99
# ibm_pi_console_languages
10+
1011
Retrieve information about all the available Console Languages for an Instance. For more information, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
1112

1213
## Example usage
14+
1315
```terraform
1416
data "ibm_pi_console_languages" "example" {
1517
pi_cloud_instance_id = "<value of the cloud_instance_id>"
1618
pi_instance_name = "<instance name or id>"
1719
}
1820
```
1921

20-
**Notes**
22+
### Notes
23+
2124
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
2225
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
2326
- `region` - `lon`
2427
- `zone` - `lon04`
2528

2629
Example usage:
30+
2731
```terraform
2832
provider "ibm" {
2933
region = "lon"
3034
zone = "lon04"
3135
}
3236
```
3337

34-
## Argument reference
38+
## Argument Reference
39+
3540
Review the argument references that you can specify for your data source.
3641

3742
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
3843
- `pi_instance_name` - (Required, String) The unique identifier or name of the instance.
3944

40-
## Attribute reference
45+
## Attribute Reference
46+
4147
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4248

4349
- `console_languages` - (List) List of all the Console Languages.

website/docs/d/pi_disaster_recovery_location.html.markdown

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ description: |-
77
---
88

99
# ibm_pi_disaster_recovery_location
10+
1011
Retrieves information about disaster recovery location. For more information, about managing a volume group, see [moving data to the cloud](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-moving-data-to-the-cloud).
1112

12-
## Example usage
13+
## Example Usage
14+
1315
The following example retrieves information about the disaster recovery location present in Power Systems Virtual Server.
1416

1517
```terraform
@@ -18,27 +20,31 @@ data "ibm_pi_disaster_recovery_location" "ds_disaster_recovery_location" {
1820
}
1921
```
2022

21-
**Notes**
23+
### Notes
24+
2225
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
2326
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
2427
- `region` - `lon`
2528
- `zone` - `lon04`
2629

2730
Example usage:
31+
2832
```terraform
2933
provider "ibm" {
3034
region = "lon"
3135
zone = "lon04"
3236
}
3337
```
3438

35-
## Argument reference
36-
Review the argument references that you can specify for your data source.
39+
## Argument Reference
40+
41+
Review the argument references that you can specify for your data source.
3742

3843
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
3944

40-
## Attribute reference
41-
In addition to all argument reference list, you can access the following attribute references after your data source is created.
45+
## Attribute Reference
46+
47+
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4248

4349
- `location` - (String) The region zone of a site.
4450
- `replication_sites` - (List) List of replication sites.

website/docs/d/pi_disaster_recovery_locations.html.markdown

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,36 @@ description: |-
77
---
88

99
# ibm_pi_disaster_recovery_locations
10+
1011
Retrieves information about disaster recovery locations. For more information, about managing a volume group, see [moving data to the cloud](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-moving-data-to-the-cloud).
1112

1213
## Example usage
14+
1315
The following example retrieves information about the disaster recovery locations present in Power Systems Virtual Server.
1416

1517
```terraform
1618
data "ibm_pi_disaster_recovery_locations" "ds_disaster_recovery_locations" {}
1719
```
1820

19-
**Notes**
21+
### Notes
22+
2023
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
2124
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
2225
- `region` - `lon`
2326
- `zone` - `lon04`
2427

2528
Example usage:
29+
2630
```terraform
2731
provider "ibm" {
2832
region = "lon"
2933
zone = "lon04"
3034
}
3135
```
3236

33-
## Attribute reference
34-
In addition to all argument reference list, you can access the following attribute references after your data source is created.
37+
## Attribute Reference
38+
39+
In addition to all argument reference list, you can access the following attribute references after your data source is created.
3540

3641
- `disaster_recovery_locations` - List of Disaster Recovery Locations.
3742

website/docs/d/pi_sap_profile.html.markdown

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: |-
1010

1111
Retrieve information about a SAP profile. For more information, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
1212

13-
## Example usage
13+
## Example Usage
1414

1515
```terraform
1616
data "ibm_pi_sap_profile" "example" {
@@ -26,23 +26,23 @@ data "ibm_pi_sap_profile" "example" {
2626
- `region` - `lon`
2727
- `zone` - `lon04`
2828

29-
Example usage:
29+
Example usage:
3030

31-
```terraform
32-
provider "ibm" {
33-
region = "lon"
34-
zone = "lon04"
35-
}
36-
```
31+
```terraform
32+
provider "ibm" {
33+
region = "lon"
34+
zone = "lon04"
35+
}
36+
```
3737

38-
## Argument reference
38+
## Argument Reference
3939

4040
Review the argument references that you can specify for your data source.
4141

4242
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
4343
- `pi_sap_profile_id` - (Required, String) SAP Profile ID.
4444

45-
## Attribute reference
45+
## Attribute Reference
4646

4747
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4848

website/docs/d/pi_sap_profiles.html.markdown

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: |-
1010

1111
Retrieve information about all SAP profiles. For more information, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
1212

13-
## Example usage
13+
## Example Usage
1414

1515
```terraform
1616
data "ibm_pi_sap_profiles" "example" {
@@ -25,22 +25,22 @@ data "ibm_pi_sap_profiles" "example" {
2525
- `region` - `lon`
2626
- `zone` - `lon04`
2727

28-
Example usage:
28+
Example usage:
2929

30-
```terraform
31-
provider "ibm" {
32-
region = "lon"
33-
zone = "lon04"
34-
}
35-
```
30+
```terraform
31+
provider "ibm" {
32+
region = "lon"
33+
zone = "lon04"
34+
}
35+
```
3636

37-
## Argument reference
37+
## Argument Reference
3838

3939
Review the argument references that you can specify for your data source.
4040

4141
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
4242

43-
## Attribute reference
43+
## Attribute Reference
4444

4545
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4646

website/docs/d/pi_storage_pool_capacity.markdown

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,41 +7,46 @@ description: |-
77
---
88

99
# ibm_pi_storage_pool_capacity
10+
1011
Retrieve information about storages capacity for a storage pool in a region. For more information, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
1112

12-
## Example usage
13+
## Example Usage
14+
1315
```terraform
1416
data "ibm_pi_storage_pool_capacity" "pool" {
1517
pi_cloud_instance_id = "<value of the cloud_instance_id>"
1618
pi_storage_pool = "Tier3-Flash-1"
1719
}
1820
```
1921

20-
**Notes**
22+
### Notes
23+
2124
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
2225
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
2326
- `region` - `lon`
2427
- `zone` - `lon04`
2528

2629
Example usage:
30+
2731
```terraform
2832
provider "ibm" {
2933
region = "lon"
3034
zone = "lon04"
3135
}
3236
```
3337

34-
## Argument reference
38+
## Argument Reference
39+
3540
Review the argument references that you can specify for your data source.
3641

3742
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
3843
- `pi_storage_pool` - (Required, String) The storage pool name.
3944

40-
## Attribute reference
45+
## Attribute Reference
46+
4147
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4248

4349
- `max_allocation_size` - (Integer) Maximum allocation storage size (GB).
4450
- `replication_enabled` - (Boolean) Replication status of the storage pool.
4551
- `storage_type` - (String) Storage type of the storage pool.
4652
- `total_capacity` - (Integer) Total pool capacity (GB).
47-

website/docs/d/pi_storage_pools_capacity.markdown

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,41 @@ description: |-
77
---
88

99
# ibm_pi_storage_pools_capacity
10+
1011
Retrieve information about storages capacity for all available storage pools in a region. For more information, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
1112

12-
## Example usage
13+
## Example Usage
14+
1315
```terraform
1416
data "ibm_pi_storage_pools_capacity" "pools" {
1517
pi_cloud_instance_id = "<value of the cloud_instance_id>"
1618
}
1719
```
1820

19-
**Notes**
21+
### Notes
22+
2023
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
2124
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
2225
- `region` - `lon`
2326
- `zone` - `lon04`
2427

2528
Example usage:
29+
2630
```terraform
2731
provider "ibm" {
2832
region = "lon"
2933
zone = "lon04"
3034
}
3135
```
3236

33-
## Argument reference
37+
## Argument Reference
38+
3439
Review the argument references that you can specify for your data source.
3540

3641
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
3742

38-
## Attribute reference
43+
## Attribute Reference
44+
3945
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4046

4147
- `maximum_storage_allocation` - (Map) Maximum storage allocation.

website/docs/d/pi_storage_type_capacity.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: |-
1010

1111
Retrieve information about storages capacity for a storage type in a region. For more information, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
1212

13-
## Example usage
13+
## Example Usage
1414

1515
```terraform
1616
data "ibm_pi_storage_type_capacity" "type" {
@@ -35,14 +35,14 @@ Example usage:
3535
}
3636
```
3737

38-
## Argument reference
38+
## Argument Reference
3939

4040
Review the argument references that you can specify for your data source.
4141

4242
- `pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
4343
- `pi_storage_type` - (Required, String) The storage type name. To get a list of available storage types, please use the [ibm_pi_storage_types_capacity](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/data-sources/pi_storage_types_capacity) data source.
4444

45-
## Attribute reference
45+
## Attribute Reference
4646

4747
In addition to all argument reference list, you can access the following attribute references after your data source is created.
4848

0 commit comments

Comments
 (0)