Skip to content

Commit

Permalink
Added a new rule to .gitingore file
Browse files Browse the repository at this point in the history
  • Loading branch information
ravbaba committed Oct 21, 2015
1 parent e06b53c commit 94c27bb
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 58 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ inventory/terraform.py
tests/spec/*/*runtime_spec.rb
contrib-plugins/*
terraform/*/.terraform
terraform/azure/ssh_thumbprint
3 changes: 1 addition & 2 deletions bootstrap/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
# Util functions cloud reusable.
APOLLO_ROOT=$(dirname "${BASH_SOURCE}")/..
DEFAULT_CONFIG="${APOLLO_ROOT}/bootstrap/${APOLLO_PROVIDER}/${APOLLO_CONFIG_FILE-"config-default.sh"}"
# It must be change before mergeing with capgemini master branch
DYNAMIC_INVENTORY="https://raw.githubusercontent.com/ravbaba/terraform.py/azure-provider/terraform.py"
DYNAMIC_INVENTORY="https://raw.githubusercontent.com/Capgemini/terraform.py/master/terraform.py"

if [ -f "${DEFAULT_CONFIG}" ]; then
source "${DEFAULT_CONFIG}"
Expand Down
53 changes: 0 additions & 53 deletions packer/packer-azure_Ubuntu_serv14.json

This file was deleted.

2 changes: 1 addition & 1 deletion terraform/azure/mesos-masters.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ resource "azure_instance" "mesos-master" {
image = "${var.atlas_artifact.master}"
size = "${var.instance_type.master}"
storage_service_name = "${azure_storage_service.azure_mesos_storage.name}"
security_group = "${azure_security_group.default.name}"
virtual_network = "${azure_virtual_network.public.name}"
subnet = "public-network-subnet"
security_group = "${azure_security_group.default.name}"
location = "${var.region}"
username = "${var.username}"
ssh_key_thumbprint = "${file("ssh_thumbprint")}"
Expand Down
2 changes: 1 addition & 1 deletion terraform/azure/mesos-slaves.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ resource "azure_instance" "mesos-slave" {
image = "${var.atlas_artifact.slave}"
size = "${var.instance_type.slave}"
storage_service_name = "${azure_storage_service.azure_mesos_storage.name}"
security_group = "${azure_security_group.default.name}"
virtual_network = "${azure_virtual_network.public.name}"
subnet = "public-network-subnet"
security_group = "${azure_security_group.default.name}"
location = "${var.region}"
username = "${var.username}"
ssh_key_thumbprint = "${file("ssh_thumbprint")}"
Expand Down
2 changes: 1 addition & 1 deletion terraform/azure/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
provider "azure" {
settings_file = "${var.azure_settings_file}"
settings_file = "${file(var.azure_settings_file)}"
}

0 comments on commit 94c27bb

Please sign in to comment.