Georgi D. Sotirov
Georgi D. Sotirov
I'm not sure what are these flags in `config.php`, but I noticed the e-mails were actually coming from `cron` daemon (as scripts output to standard output), so I just added...
This is what works for me on CentOS 8: ```ini [Unit] Description=Cloud SQL Proxy service Wants=network-online.target After=network-online.target [Service] WorkingDirectory=/usr/bin ExecStart=/usr/bin/cloud_sql_proxy -instances=...=tcp:3306 Restart=always Type=simple StandardError=syslog StandardOutput=journal KillMode=process [Install] WantedBy=multi-user.target ``` It...
@radeksimko Currently `dynamic` blocks are not highlighted properly and it breaks highlighting of comments after them (using VS Code 1.64.2 and HashiCorp Terraform 2.20.0). Is this what is meant here...
Sorry, the problem was not actually from the `dynamic` block, but the round braces around the condition of a [conditional expression](https://www.terraform.io/language/expressions/conditionals) just before it. I'll see to prepare a snippet...
The first disk (mounted as `/`) that is 20 GB could be as small as 2 GB, because only about 1.1 GB seem to be used and on upgrades the...
@ehlers I though I did, but anyway here below my recommendations summarized: - first disk (mounted as `/`) could be 2-4 GB; - second disk (mounted as `/opt`) could be...
> GNS3 projects are stored in /opt and these can quickly take a lot of space. OK, but how much is "lot of space"? Even so, I believe there OVF...
> I couldn't find any information about this. I wrote that I'm not sure, because I'm not experienced with KVM, but according to KVM's FAQ various disk formats are supported...
> I assume you use thick provisioning when deploying the VM on ESXi so that's why it preallocated the whole space of 117GB for both disks. I'm not quite sure...
You have to [untaint](https://www.terraform.io/docs/commands/untaint.html) the resource as for Terraform it was already created OK. The change of the playbook itself won't trigger Terraform to run it again.