Update to Terraform 1.0.11.

This commit is contained in:
Treehopper 2021-11-24 15:57:44 +00:00
parent 82c52098e7
commit 12ebd06694
2 changed files with 3 additions and 3 deletions

View File

@ -38,11 +38,11 @@ resource "kubernetes_deployment" "example" {
name = "example"
resources {
limits {
limits = {
cpu = "0.5"
memory = "512Mi"
}
requests {
requests = {
cpu = "250m"
memory = "50Mi"
}

View File

@ -62,7 +62,7 @@ For extra reference you can also take a look at the Microsoft Docs: [here](https
```
# Get Terraform
curl -o /tmp/terraform.zip -LO https://releases.hashicorp.com/terraform/0.12.28/terraform_0.12.28_linux_amd64.zip
curl -o /tmp/terraform.zip -LO https://releases.hashicorp.com/terraform/1.0.11/terraform_1.0.11_linux_amd64.zip
unzip /tmp/terraform.zip
chmod +x terraform && mv terraform /usr/local/bin/