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
| $ gem install gem install azure_mgmt_compute | |
| $ ruby status.rb | |
| There are [1] in this account | |
| AZURE VM IDs FOR THIS ACCOUNT | |
| ============================= | |
| /subscriptions/<subscription id###>/resourceGroups/CLOUD-ACCEPTANCE-TESTS/providers/Microsoft.Compute/virtualMachines/CLOUD-3cdbed43 | |
| ============================= | |
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
| #!/bin/bash | |
| BAR=$(printf '#!/bin/bash\ntouch /tmp/ididit\necho \"root:changeme2016\" | chpasswd"' | gzip | openssl base64 -A) | |
| echo $BAR | python -m base64 -d | gunzip |
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
| require 'spec_helper' | |
| require 'pry' | |
| %w(serverspec rake).each do |package_name| | |
| describe package(package_name) do | |
| it { should be_installed.by('gem') } | |
| end | |
| end | |
| [ |
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
| azure_resource_group { 'test-rg': | |
| ensure => present, | |
| location => 'eastus', | |
| } | |
| # Example with a source | |
| azure_resource_template { 'test-storage-account': | |
| ensure => 'present', | |
| resource_group => 'test-rg', | |
| source => 'https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-storage-account-create/azuredeploy.json', | |
| params => { |
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
| 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 |
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
| Create Resource Group | |
| HTTPS request | |
| put subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName} | |
| { | |
| "resourceGroupName": "ccgh792", | |
| "subscriptionId": "c82736ee-c108-452b-8178-f548c95d18fe" | |
| } | |
| Body: | |
| { | |
| "location": "westus" |
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
| ENTRYPOINT ["sh", "-c", "find /etc/puppetlabs/code/modules/azure/lib | grep rb | xargs rufo"] |
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
| 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 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
| 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 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
| 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' |
OlderNewer