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
{ | |
"shapes": { | |
"input_token=NextToken;limit_key=MaxResults;output_token=NextToken": 725, | |
"input_token=nextToken;limit_key=maxResults;output_token=nextToken": 305, | |
"input_token=Marker;limit_key=MaxRecords;output_token=Marker": 141, | |
"input_token=NextToken;limit_key=Limit;output_token=NextToken": 72, | |
"input_token=NextToken;output_token=NextToken": 68, | |
"input_token=nextToken;output_token=nextToken": 41, | |
"input_token=Marker;limit_key=MaxItems;more_results=IsTruncated;output_token=Marker": 27, | |
"input_token=nextToken;limit_key=limit;output_token=nextToken": 22, |
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
{ | |
"pipeline": { | |
"name": "sher2-pipeline", | |
"roleArn": "arn:aws:iam::00000000:role/sher2-us-west-2-pipeline", | |
"artifactStore": { | |
"type": "S3", | |
"location": "sher2-00000000-us-west-2-pipeline" | |
}, | |
"stages": [ | |
{ |
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
alias REGIONS_NAMES='aws ec2 describe-regions | jq ".Regions[].RegionName" -r' | |
alias TERMINATE='aws ec2 terminate-instances --instance-ids' | |
alias STOP='aws ec2 stop-instances --instance-ids' | |
alias START='aws ec2 start-instances --instance-ids' | |
alias MON_ENA='aws ec2 monitor-instances --instance-ids' | |
alias MON_DIS='aws ec2 unmonitor-instances --instance-ids' | |
RESIZE() { | |
aws ec2 modify-instance-attribute --instance-id "$1" --instance-type "{\"Value\": \"$2\"}" | |
} | |
DESC() { |
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
" --- Global settings | |
set nocompatible | |
syntax on | |
set ts=4 sw=4 noet hls ai | |
set bs=indent,eol,start | |
set hi=100 | |
set laststatus=2 | |
set incsearch | |
" --- netrw settings |
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
; Keys | |
(global-set-key [M-left] 'windmove-left) | |
(global-set-key [M-right] 'windmove-right) | |
(global-set-key [M-up] 'windmove-up) | |
(global-set-key [M-down] 'windmove-down) | |
(global-set-key [f2] 'save-buffer) | |
; Settings | |
(global-hi-lock-mode 1) | |
(ido-mode 1) |
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
# WARNING: | |
# /etc/sudoers must not have "Default requiretty" for Puppet plugin to work | |
imports: | |
- http://www.getcloudify.org/spec/cloudify/3.1/types.yaml | |
plugins: | |
puppet_plugin: | |
derived_from: cloudify.plugins.agent_plugin |
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
# In new virtualenv: | |
PACKAGES="cloudify-dsl-parser cloudify-rest-client cloudify-cli cloudify-openstack-provider" | |
for pkg in $PACKAGES;do | |
pip install --upgrade https://github.com/Cloudify-Cosmo/$pkg/archive/master.zip | |
done |
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
# WARNING: | |
# /etc/sudoers must not have "Default requiretty" for Puppet plugin to work | |
imports: | |
- http://www.getcloudify.org/spec/cloudify/3.0/types.yaml | |
plugins: | |
puppet_plugin: | |
derived_from: cloudify.plugins.agent_plugin |
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
- name: chef_node_one | |
type: cloudify.types.chef.db_server | |
properties: | |
chef_config: | |
version: 11.10.4-1 | |
chef_server_url: https://chef.example.com:443 | |
validation_client_name: chef-validator | |
validation_key: "-----BEGIN RSA PRIVATE KEY-----\n.......\n-----END RSA PRIVATE KEY-----\n" | |
node_name_prefix: chef-node- | |
node_name_suffix: .chef.example.com |
NewerOlder