-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Variables not allowed #22
Comments
I'm hitting the same issue, what are we missing? |
OK in my case, the issue was coming from missing double quotes in the resulting string, thanks yaml for you sloppy string handling! I had this: env:
TF_VAR_image_tag: "latest" but I actually needed to do this: env:
TF_VAR_image_tag: '"latest"' |
this should probably be documented somewhere. |
Apologies for the confusion. We went ahead and pointed out this detail in the Looking into how we can improve this experience in the future. |
Let's say I have hundrads of variables with their values in my |
I'm struggling to pass in a variable at runtime.
I used the learn tfc tutorial to get a basic project going.
The projects works fine, when declaring variable in the interface, but it doesn't work at all, when trying to pass them in via en variables.
I modified the 'main.tf' file:
And try to run tf in an action:
However in the tfc console I receive the error:
Am I missing something?
The text was updated successfully, but these errors were encountered: