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
variable "resourceGroupName" { | |
default = "myResourceGroup" | |
} | |
variable "location" { | |
default = "West US" | |
} | |
variable "clusterName" { | |
default = "servicefabcluster" | |
} | |
variable "nodeCount" { |
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
variable "storageAccountPrefix" { | |
default = "node" | |
} | |
variable "resourceGroupName" { | |
default = "MyResourceGroup" | |
} | |
variable "location" { | |
default = "West US" | |
} | |
variable "nodeCount" { |
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
2017/05/17 11:55:20 [INFO] Terraform version: 0.9.5 | |
2017/05/17 11:55:20 [INFO] Go runtime version: go1.8.1 | |
2017/05/17 11:55:20 [INFO] CLI args: []string{"/usr/local/Cellar/terraform/0.9.5/bin/terraform", "import", "azurerm_network_interface.test", "/subscriptions/xxxxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/microsoft.network/networkInterfaces/jenkinsmaster314"} | |
2017/05/17 11:55:20 [DEBUG] Detected home directory from env var: /Users/myself | |
2017/05/17 11:55:20 [DEBUG] Detected home directory from env var: /Users/myself | |
2017/05/17 11:55:20 [DEBUG] Attempting to open CLI config file: /Users/myself/.terraformrc | |
2017/05/17 11:55:20 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2017/05/17 11:55:20 [INFO] CLI command args: []string{"import", "azurerm_network_interface.test", "/subscriptions/xxxxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/microsoft.network/networkInterfaces/jenkinsmaster314"} | |
2017/05/17 11:55:20 [DEBUG] Detected home di |
This file has been truncated, but you can view the full file.
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
2017/04/14 19:41:37 [INFO] Terraform version: 0.9.2 6365269541c8e3150ebe638a5c555e1424071417+CHANGES | |
2017/04/14 19:41:37 [INFO] Go runtime version: go1.8 | |
2017/04/14 19:41:37 [INFO] CLI args: []string{"/opt/terraform/terraform", "apply"} | |
2017/04/14 19:41:37 [DEBUG] Detected home directory from env var: /var/lib/jenkins | |
2017/04/14 19:41:37 [DEBUG] Detected home directory from env var: /var/lib/jenkins | |
2017/04/14 19:41:37 [DEBUG] Attempting to open CLI config file: /var/lib/jenkins/.terraformrc | |
2017/04/14 19:41:37 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2017/04/14 19:41:37 [INFO] CLI command args: []string{"apply"} | |
2017/04/14 19:41:37 [DEBUG] command: loading backend config file: /var/lib/jenkins/workspace/TerraformSFCluster/cicd-azure | |
2017/04/14 19:41:37 [DEBUG] command: no data state file found for backend config |
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/sh | |
# | |
# Too many crusty old git branches? Run this to find likely candidates for deletion | |
# It lists all the remote branches and sorts them by age. | |
# | |
# Folks at pivotal shared this with me | |
# | |
#$ . show-remote-branch-info.sh | |
# 2012-05-04 09:42:29 -0700 4 minutes ago Ted & Bill \torigin/hey_Bill |
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 | |
## | |
# Script created by David Lewis ([email protected]) for PyroCMS | |
# This script will rename an existing (core) CMS module and duplicate it into the | |
# addons/shared_addons/modules directory, while renaming it and all file contents to | |
# match | |
# | |
# Usage: ./rename_module.sh "old_module" "new_module" | |
# |
NewerOlder