Skip to content

Commit

Permalink
Update to Terraform 1.0.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
Treehopper committed Nov 24, 2021
1 parent 82c5209 commit 12ebd06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kubernetes/cloud/azure/terraform/modules/k8s/k8s.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ resource "kubernetes_deployment" "example" {
name = "example"

resources {
limits {
limits = {
cpu = "0.5"
memory = "512Mi"
}
requests {
requests = {
cpu = "250m"
memory = "50Mi"
}
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/cloud/azure/terraform/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 12ebd06

Please sign in to comment.