-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add streams for group and project variables (#64)
* Add support for Group Variables and Project Variables * Update README * Add config for fetching group/project variables - defaults both to False * Update README * Fixup trailing commas Co-authored-by: Warren Ersly <[email protected]> Co-authored-by: Warren Ersly <[email protected]>
- Loading branch information
1 parent
f5449f8
commit f657d3c
Showing
5 changed files
with
105 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"group_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"variable_type": { | ||
"type": ["null", "string"] | ||
}, | ||
"key": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
}, | ||
"protected": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"masked": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"environment_scope": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"project_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"variable_type": { | ||
"type": ["null", "string"] | ||
}, | ||
"key": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
}, | ||
"protected": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"masked": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"environment_scope": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |