mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
Update to Terraform 1.0.11.
This commit is contained in:
parent
82c52098e7
commit
12ebd06694
@ -38,11 +38,11 @@ resource "kubernetes_deployment" "example" {
|
||||
name = "example"
|
||||
|
||||
resources {
|
||||
limits {
|
||||
limits = {
|
||||
cpu = "0.5"
|
||||
memory = "512Mi"
|
||||
}
|
||||
requests {
|
||||
requests = {
|
||||
cpu = "250m"
|
||||
memory = "50Mi"
|
||||
}
|
||||
|
@ -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/
|
||||
|
Loading…
x
Reference in New Issue
Block a user