romanprog
romanprog
1) Possibility check template name in console command, when using interactive mode 2) In interactive mode use default values if user press enter with empty field
Description: https://developer.hashicorp.com/terraform/language/settings/backends/s3#overriding-aws-api-endpoints
Function should apply project templating to some string data. Templating should contain limited set of functions (exclude: read files etc)
Example: ```yaml name: stack1 template: ./template1/ kind: Stack backend: aws-backend variables: foo: bar --- name: stack2 template: ./template1/ kind: Stack backend: aws-backend depends_on: stack1 variables: foo: bar ```
Now (deprecated in terraform >1.0): ``` provider "aws" { region = "eu-central-1" version = "4.67.0" } ``` Should be: ``` provider "aws" { region = "eu-central-1" } terraform { required_providers...
Example: ```yaml ... - name: r53 type: tfmodule source: terraform-aws-modules/route53/aws//modules/zones version: "~> 2.0" description: "Creates route53 zone for cluster technical domains" inputs: zones: - dev.example.com ... ```
Possibility to specify the stack(s) or unit(s) as the target of the commands. `cdev apply --target ` `cdev apply --target . --target .` **What would you like to add** **Why...
Add option `destroy_protection: true/false` which will prevent the destruction of the unit and all its dependencies. To destroy protected units, should to change the option to false, execute the `cdev...
**What happened**: liveness/readiness probes with the exec command do not work if the machine boots with DataVolume. ``` $ kubectl get vmi NAME AGE PHASE IP NODENAME READY vmi-fedora 15m...
pre_hook and post_hook should support option `Commands`, type - list of strings. Also option command must supports for backward compatibility