Skip to content

Commit 3243cb2

Browse files
committed
Update Blog “infrastructure-as-code-on-hpe-greenlake-using-terraform”
1 parent 6ac86d1 commit 3243cb2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

content/blog/infrastructure-as-code-on-hpe-greenlake-using-terraform.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ tags:
2020

2121
- - -
2222

23-
2423
The process of managing and provisioning computer data centers through machine-readable definition files, otherwise known as Infrastructure-as-Code (IaC), offers many significant benefits. It helps to increase operational agility, simplify management, reduce errors, and save cost. In this post, I’ll explore some of the benefits of using IaC on HPE GreenLake through the use of Terraform.
2524

2625
## Let’s harness some of the benefits of Infrastructure as Code
@@ -75,7 +74,7 @@ terraform {
7574
required_providers {
7675
hpegl = {
7776
source = "hpe/hpegl"
78-
version = "0.1.7"
77+
version = "0.3.17"
7978
}
8079
}
8180
}
@@ -154,7 +153,7 @@ Your next step with the TF file is to query the HPE GreenLake provider to collec
154153
* Template ID
155154
* Folder Code
156155

157-
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**
156+
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**
158157

159158
```json
160159
# Retrieve cloud id
@@ -258,8 +257,8 @@ Initializing the backend...
258257

259258
Initializing provider plugins...
260259
- Finding hpe/hpegl versions matching "0.1.7"...
261-
- Installing hpe/hpegl v0.1.7...
262-
- Installed hpe/hpegl v0.1.7 (signed by a HashiCorp partner, key ID D1F277A1AC66CE3D)
260+
- Installing hpe/hpegl v0.3.17...
261+
- Installed hpe/hpegl v0.3.17 (signed by a HashiCorp partner, key ID D1F277A1AC66CE3D)
263262

264263
Partner and community providers are signed by their developers.
265264
If you'd like to know more about provider signing, you can read about it here:

0 commit comments

Comments
 (0)