summaryrefslogtreecommitdiffstats
path: root/inventory/gce
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2014-10-29 15:06:30 -0400
committerThomas Wiest <twiest@redhat.com>2014-10-29 15:06:30 -0400
commit4d828882e623c36d498a88b8f632c0de2db553a3 (patch)
treeb6ce2a7743c90217949a315c4b9500b809240308 /inventory/gce
parente1f362d24763a28c383468248517e4dbb5036de4 (diff)
downloadopenshift-4d828882e623c36d498a88b8f632c0de2db553a3.tar.gz
openshift-4d828882e623c36d498a88b8f632c0de2db553a3.tar.bz2
openshift-4d828882e623c36d498a88b8f632c0de2db553a3.tar.xz
openshift-4d828882e623c36d498a88b8f632c0de2db553a3.zip
removed gce.ini and instead added instructions for setting up secrets.py
Diffstat (limited to 'inventory/gce')
-rw-r--r--inventory/gce/gce.ini47
1 files changed, 0 insertions, 47 deletions
diff --git a/inventory/gce/gce.ini b/inventory/gce/gce.ini
deleted file mode 100644
index 3d6403c20..000000000
--- a/inventory/gce/gce.ini
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/python
-# Copyright 2013 Google Inc.
-#
-# This file is part of Ansible
-#
-# Ansible is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# Ansible is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
-
-# The GCE inventory script has the following dependencies:
-# 1. A valid Google Cloud Platform account with Google Compute Engine
-# enabled. See https://cloud.google.com
-# 2. An OAuth2 Service Account flow should be enabled. This will generate
-# a private key file that the inventory script will use for API request
-# authorization. See https://developers.google.com/accounts/docs/OAuth2
-# 3. Convert the private key from PKCS12 to PEM format
-# $ openssl pkcs12 -in pkey.pkcs12 -passin pass:notasecret \
-# > -nodes -nocerts | openssl rsa -out pkey.pem
-# 4. The libcloud (>=0.13.3) python libray. See http://libcloud.apache.org
-#
-# (See ansible/test/gce_tests.py comments for full install instructions)
-#
-# Author: Eric Johnson <erjohnso@google.com>
-
-[gce]
-# GCE Service Account configuration information can be stored in the
-# libcloud 'secrets.py' file. Ideally, the 'secrets.py' file will already
-# exist in your PYTHONPATH and be picked up automatically with an import
-# statement in the inventory script. However, you can specify an absolute
-# path to the secrets.py file with 'libcloud_secrets' parameter.
-libcloud_secrets =
-
-# If you are not going to use a 'secrets.py' file, you can set the necessary
-# authorization parameters here.
-gce_service_account_email_address = 198287808360-f457cs26hutqeosmlje1eosfeqo0krlg@developer.gserviceaccount.com
-gce_service_account_pem_file_path = ~/.ssh/os302gce_priv_key.pem
-gce_project_id = corded-cable-672
-