-
Notifications
You must be signed in to change notification settings - Fork 59
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
feat(compute/deploy): add Secret Store to manifest [setup]
#769
Conversation
f922816
to
8bffeeb
Compare
8bffeeb
to
55e4fc2
Compare
pkg/commands/compute/deploy.go
Outdated
kvStores *setup.KVStores | ||
secretStores *setup.SecretStores | ||
} | ||
|
||
func constructSetupKVs( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed this should be constructSetupObjects
55e4fc2
to
827d439
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One suggested edit otherwise LGTM. Thanks for refactoring the multiple returned objects into a single object, much cleaner and future proof 👍🏻
Oh I forgot about |
Adds ability to define Secret Stores in the
[setup]
section of afastly.toml
config file. The user will be prompted to create the defined stores and secrets on creation of a service when usingfastly compute deploy
.Related: #717, #764