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
#/bin/bash | |
function bold() | |
{ | |
echo "\033[1m${1}\033[22m" | |
} | |
function dim() | |
{ | |
echo "\033[2m${1}\033[22m" |
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
grep -rl '/utils' ./ | xargs gsed -i "s+/utils+/lib/utils+g" |
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
#!/usr/bin/ruby | |
# Assumptions. | |
# You have tagged your resources with a common tag. This tag is passed by the ENV var below. | |
# The security group name is the tag_name as well. | |
require 'aws-sdk-ec2' | |
tag_name = ENV['PT_tag_name'] |
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
require 'aws-sdk-ec2' | |
Puppet::Functions.create_function(:'amazon_aws::get_vpc') do | |
dispatch :up do | |
param 'String', :vpc_name | |
end | |
def up(vpc_name) | |
client = Aws::EC2::Client.new(region: 'us-west-2') | |
vpc_id = "" |
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
source 'https://rubygems.org' | |
gem 'cookiejar', '>= 0.3.0' | |
gem 'em-http-request', '>= 0.3.0' | |
gem 'faye-websocket', '>= 0.9.1' | |
gem 'multi_json', '>= 1.0.0' | |
gem 'rack', '>= 1.0.0' | |
gem 'websocket-driver', '>= 0.5.1' | |
gem 'permessage_deflate', '>= 0.1.0' | |
gem 'eventmachine', '>= 0.12.0' |
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
def symbolize(obj) | |
return obj.reduce({}) do |memo, (k, v)| | |
memo.tap { |m| m[k.to_sym] = symbolize(v) } | |
end if obj.is_a? Hash | |
return obj.reduce([]) do |memo, v| | |
memo << symbolize(v); memo | |
end if obj.is_a? Array | |
obj | |
end |
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
build-docker-linux: OS_TYPE = linux | |
build-docker-linux: build-docker | |
build-docker: | |
@if [ -z "$(IMAGE)" ];then\ | |
docker build -t $(DOCKER_IMAGE) --build-arg targetos=$(OS_TYPE) .;\ | |
else\ | |
docker build -t $(IMAGE) --build-arg targetos=$(OS_TYPE) .;\ | |
fi |
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
ENTRYPOINT ["sh", "-c", "find /etc/puppetlabs/code/modules/azure/lib | grep rb | xargs rufo"] |
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
Create Resource Group | |
HTTPS request | |
put subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName} | |
{ | |
"resourceGroupName": "ccgh792", | |
"subscriptionId": "c82736ee-c108-452b-8178-f548c95d18fe" | |
} | |
Body: | |
{ | |
"location": "westus" |
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
require 'azure_mgmt_compute' | |
require 'azure_mgmt_resources' | |
require 'azure_mgmt_storage' | |
require 'azure' | |
include Azure | |
include Azure::ARM::Compute | |
include Azure::ARM::Compute::Models | |
include Azure::ARM::Resources |
NewerOlder