This website requires JavaScript.
Explore
Help
Sign In
IntenseWebs
/
opentofu
Watch
3
Star
0
Fork
0
You've already forked opentofu
mirror of
https://github.com/opentofu/opentofu.git
synced
2024-12-27 09:21:14 -06:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
657f9502e4
opentofu
/
config
/
testdata
/
output-unnamed.tf
8 lines
62 B
Terraform
Raw
Normal View
History
Unescape
Escape
config: generate errors for unnamed blocks of various sources We've been incorrectly validating (or not validating at all) the requirement that certain blocks be followed by a name string, to prohibit e.g. this: variable {} and: variable = "" Before this change we were catching this for most constructs only if there were no _valid_ blocks of the same name in the same file. For modules in particular, we were not catching this at all. Now we detect this for all kinds of block (resources had a pre-existing check, so aren't touched here) and produce a different error message depending on which of the above incorrect forms are used. This fixes #13575.
2017-05-02 17:42:34 -05:00
output
"
okay
"
{
value
=
"
bar
"
}
config: validate that outputs have a name
2016-11-02 18:56:20 -05:00
output
{
value
=
"
foo
"
}
Reference in New Issue
Copy Permalink