Skip to content

Commit fdf1688

Browse files
Update Blog “highly-available-nfs-workload-on-hpe-greenlake-for-private-cloud-enterprise-using-serviceguard-for-linux”
1 parent 52b606f commit fdf1688

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

content/blog/highly-available-nfs-workload-on-hpe-greenlake-for-private-cloud-enterprise-using-serviceguard-for-linux.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,9 @@ You can create a virtual machine in the Virtual Machines service of HPE GreenLak
5353
## Building a Terraform configuration file from scratch
5454

5555
Let’s start building this Terraform (TF) file using your favourite editor.
56-
5756

5857
### Selecting a Terraform provider
5958

60-
6159
The first section of the file will enumerate the “providers” you rely upon for building your infrastructure, and they could be multiple providers in a single TF file. In the case here, you only have the HPE GreenLake provider referenced as hpe/hpegl in the official Terraform registry.
6260
The first lines of your Terraform configuration file should look like this:
6361

@@ -74,9 +72,7 @@ terraform {
7472
}
7573
```
7674

77-
You can find out more about the HPE GreenLake Terraform provider from its Terraform Registry page:
78-
79-
https://registry.terraform.io/providers/HPE/hpegl/latest This page also provides a link to the GitHub repository corresponding to this provider.
75+
You can find out more about the HPE GreenLake Terraform provider from its [Terraform Registry page](https://registry.terraform.io/providers/HPE/hpegl/latest). This page also provides a link to the GitHub repository corresponding to this provider.
8076
The docs folder is your best source of information for using the different data sources and resources provided by the provider. If you navigate to the resources section, you will see that one resource you can configure with this provider is a VM instance. This article will focus on this resource.
8177
Note: Because this is open source, do not hesitate to open issues, or even a pull request, if you identify an issue.
8278

@@ -195,7 +191,7 @@ Your next step with the TF file is to query the HPE GreenLake provider to collec
195191

196192
• Folder Code
197193

198-
For this, you will use the Terraform data statements. For example, the following statement retrieves the Cloud ID and stores it (in variable called cloud), which we can later retrieve using: data.hpegl_vmaas_cloud.cloud.id
194+
For this, you will use the Terraform data statements. For example, the following statement retrieves the Cloud ID and stores it (in variable called cloud), which we can later retrieve using: data.hpegl\_vmass\_cloud.cloud.id
199195

200196
```json
201197
# Retrieve cloud id

0 commit comments

Comments
 (0)