$ ./githubapi-get.sh $GITHUBTOKEN /users/mbohun/reposHTTP/1.1 200 OK
Server: GitHub.com
Date: Wed, 04 Mar 2015 04:30:29 GMT
Content-Type: application/json; charset=utf-8
Content-Length: 155683
Status: 200 OK| level=error time=2024-07-24T16:26:52Z msg="Driver log level mapping not found" module=log.go | |
| level=error time=2024-07-24T16:26:52Z msg="Instance log level mapping not found" module=log.go | |
| level=info time=2024-07-24T16:26:52Z msg="Successfully got ECS instance credentials from provider: EC2RoleProvider" | |
| level=info time=2024-07-24T16:26:52Z msg="Starting Amazon ECS Agent" version="1.85.1" commit="4480f9d7" | |
| level=info time=2024-07-24T16:26:52Z msg="Loading configuration" | |
| level=info time=2024-07-24T16:26:52Z msg="Successfully got ECS instance credentials from provider: EC2RoleProvider" | |
| level=info time=2024-07-24T16:26:52Z msg="Unable to get Docker client for version 1.17: Error response from daemon: client version 1.17 is too old. Minimum supported API version is 1.24, please upgrade your client to a newer version" module=sdkclientfactory.go | |
| level=info time=2024-07-24T16:26:52Z msg="Unable to get Docker client for version 1.18: Error response from daemon: client version 1.18 is too old. Minimum supported API vers |
| @echo off | |
| SET STATUS=0 | |
| SET AWS_STATUS=0 | |
| SET SSM_STATUS=0 | |
| SET DBEAVER_STATUS=0 | |
| SET AWS_CLI_URL=https://awscli.amazonaws.com/AWSCLIV2.msi | |
| SET SSM_URL=https://s3.amazonaws.com/session-manager-downloads/plugin/latest/windows/SessionManagerPluginSetup.exe | |
| SET DBEAVER_URL=https://dbeaver.io/files/dbeaver-ce-latest-x86_64-setup.exe |
| #!/usr/bin/env bash | |
| STATUS=0 | |
| BREW_STATUS=0 | |
| AWS_STATUS=0 | |
| SSM_STATUS=0 | |
| DBEAVER_STATUS=0 | |
| AWS_CLI_URL="https://s3.amazonaws.com/session-manager-downloads/plugin/latest/mac/session-manager-plugin.pkg" | |
| echo "Tools installation started" |
| #!/bin/bash | |
| set -e | |
| REQUIREMENTS="gh" | |
| for CMD in ${REQUIREMENTS};do | |
| if ! command -v $CMD &> /dev/null | |
| then | |
| echo "Please install $CMD" | |
| exit 1 |
| import argparse | |
| import requests | |
| import os | |
| import sys | |
| import yaml | |
| headers = {"Authorization": "token {}".format( | |
| os.environ.get('GITHUB_ADMIN_ORG_READ_TOKEN', ''))} | |
$ ./githubapi-get.sh $GITHUBTOKEN /users/mbohun/reposHTTP/1.1 200 OK
Server: GitHub.com
Date: Wed, 04 Mar 2015 04:30:29 GMT
Content-Type: application/json; charset=utf-8
Content-Length: 155683
Status: 200 OK| -- | |
| -- Read only | |
| -- | |
| -- Create a group | |
| CREATE ROLE postgres_ro_group; | |
| -- Grant access to existing tables | |
| GRANT USAGE ON SCHEMA public TO postgres_ro_group; | |
| GRANT SELECT ON ALL TABLES IN SCHEMA public TO postgres_ro_group; |