gce.ini 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/usr/bin/python
  2. # Copyright 2013 Google Inc.
  3. #
  4. # This file is part of Ansible
  5. #
  6. # Ansible is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # Ansible is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
  18. # The GCE inventory script has the following dependencies:
  19. # 1. A valid Google Cloud Platform account with Google Compute Engine
  20. # enabled. See https://cloud.google.com
  21. # 2. An OAuth2 Service Account flow should be enabled. This will generate
  22. # a private key file that the inventory script will use for API request
  23. # authorization. See https://developers.google.com/accounts/docs/OAuth2
  24. # 3. Convert the private key from PKCS12 to PEM format
  25. # $ openssl pkcs12 -in pkey.pkcs12 -passin pass:notasecret \
  26. # > -nodes -nocerts | openssl rsa -out pkey.pem
  27. # 4. The libcloud (>=0.13.3) python libray. See http://libcloud.apache.org
  28. #
  29. # (See ansible/test/gce_tests.py comments for full install instructions)
  30. #
  31. # Author: Eric Johnson <erjohnso@google.com>
  32. [gce]
  33. # GCE Service Account configuration information can be stored in the
  34. # libcloud 'secrets.py' file. Ideally, the 'secrets.py' file will already
  35. # exist in your PYTHONPATH and be picked up automatically with an import
  36. # statement in the inventory script. However, you can specify an absolute
  37. # path to the secrets.py file with 'libcloud_secrets' parameter.
  38. libcloud_secrets =
  39. # If you are not going to use a 'secrets.py' file, you can set the necessary
  40. # authorization parameters here.
  41. gce_service_account_email_address = 198287808360-f457cs26hutqeosmlje1eosfeqo0krlg@developer.gserviceaccount.com
  42. gce_service_account_pem_file_path = ~/.ssh/os302gce_priv_key.pem
  43. gce_project_id = corded-cable-672