Terraform Version
Expected Behavior
Expected the correct boolean operator in the error message ("AND" instead of "OR")
Error: Unsupported operator
on myapp-web.tf line 10, in resource "kubernetes_deployment" "myapp-web":
10: replicas = |
Bitwise operators are not supported. Did you mean boolean AND ("&&")?
Actual Behavior
Error: Unsupported operator
on myapp-web.tf line 10, in resource "kubernetes_deployment" "myapp-web":
10: replicas = |
Bitwise operators are not supported. Did you mean boolean OR ("&&")?
Steps to Reproduce
Using kubernetes provider to declare a new deployment. Accidentally typed pipe char ("|") instead of "1" for number of replicas.
Terraform Version
Expected Behavior
Expected the correct boolean operator in the error message ("AND" instead of "OR")
Actual Behavior
Steps to Reproduce
Using kubernetes provider to declare a new deployment. Accidentally typed pipe char ("|") instead of "1" for number of replicas.