This file contains hidden or 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
#!/home/bruno/.virtualenvs/salt/bin/python | |
""" | |
This script formats pepper output using salt outputters. | |
It can both format sync and async jobs, and can be used in the following ways: | |
``` | |
$ pepper \* state.sls core | pepper_format.py -o highstate | |
$ pepper --client=local_async \* state.highstate | pepper_format.py | |
$ pepper_format.py 20170504160400750792 | |
``` |
This file contains hidden or 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
provider "github" { | |
token = "XXXXXXXXXX" | |
organization = "vthtest" | |
} | |
resource "github_team" "team1" { | |
name = "team1" | |
description = "Some cool team" | |
privacy = "closed" | |
} |