Skip to content

Commit

Permalink
Remove Sensitive property for legacy modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecarbs committed Nov 15, 2021
1 parent 36c861c commit 5d41bab
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tfconfig/load_legacy.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ func loadModuleLegacyHCL(fs FS, dir string) (*Module, Diagnostics) {
Type string `hcl:"type"`
Default interface{}
Description string
Sensitive bool `hcl:"sensitive"`
Fields []string `hcl:",decodedFields"`
}

Expand Down Expand Up @@ -111,7 +110,6 @@ func loadModuleLegacyHCL(fs FS, dir string) (*Module, Diagnostics) {
Description: block.Description,
Default: block.Default,
Required: block.Default == nil,
Sensitive: block.Sensitive,
Pos: sourcePosLegacyHCL(item.Pos(), filename),
}
if _, exists := mod.Variables[name]; exists {
Expand Down

0 comments on commit 5d41bab

Please sign in to comment.