-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add separate config for service flags (#58)
- Loading branch information
1 parent
e03f5a7
commit e734974
Showing
3 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,12 @@ server: | |
address: 127.0.0.1 | ||
port: 9091 | ||
service: | ||
command: ecs_credential_provider | ||
args: | ||
command: serve | ||
flags: # Flags are CLI options | ||
- --log-level | ||
- debug | ||
args: # Args are command arguments. This configuration will start the metadata service with credentials for roleName | ||
- roleName | ||
#challenge_settings: # (Optional) Username can be provided. If it is not provided, user will be prompted on first authentication attempt | ||
# user: [email protected] | ||
mtls_settings: # only needed if authentication_method is mtls | ||
|