You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the error thrown by terraform when corral create
Inappropriate value for attribute "volume_size": a number is required.
Error: Incorrect attribute value type
on main.tf line 88, in resource "aws_instance""agent":
88: volume_size = var.aws_volume_size
├────────────────
│ var.aws_volume_size is "50G"
End if we change the variable value to a number without quotes on the template's manifest there's a type error.
FATA[0000] invalid variables: aws_volume_size:: jsonschema: '' does not validate with aws_volume_size#/type: expected string, but got number
These errors can be fixed by changing the aws_volume_size variables to integer.
The text was updated successfully, but these errors were encountered:
Reproducible using the corral binary.
This is the error thrown by terraform when
corral create
End if we change the variable value to a number without quotes on the template's manifest there's a type error.
FATA[0000] invalid variables: aws_volume_size:: jsonschema: '' does not validate with aws_volume_size#/type: expected string, but got number
These errors can be fixed by changing the
aws_volume_size
variables to integer.The text was updated successfully, but these errors were encountered: