Skip to content
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

config: per-key default values / include overrides #7

Open
temoto opened this issue Jul 3, 2020 · 0 comments
Open

config: per-key default values / include overrides #7

temoto opened this issue Jul 3, 2020 · 0 comments

Comments

@temoto
Copy link
Owner

temoto commented Jul 3, 2020

As configs merging (include mechanic) is implemented right now, whole block will override parent block.

# vender.hcl
ui {
  front {
    msg_intro = "hello"
    msg_wait = "please wait"
  }
}
include "local.hcl" {}

# local.hcl
ui {
  front {
    msg_intro = "welcome"
  }
}

Yields config.UI.Front.MsgIntro="welcome" MsgWait=""

Should be config.UI.Front.MsgIntro="welcome" MsgWait="please wait"

Options to explore: hcl2, toml, lua.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant