1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack
Dan Prince 7710f5c749 Merge pull request #1542 from rubiojr/configurable-endpoint-type
[openstack|compute] configurable :openstack_endpoint_type
2013-02-05 17:59:46 -08:00
..
models [openstack|compute] rename meta_hash to to_hash; make it public 2013-01-29 14:25:53 -08:00
requests Merge pull request #1496 from rubiojr/openstack-storage 2013-01-28 12:34:28 -08:00
compute.rb Merge pull request #1542 from rubiojr/configurable-endpoint-type 2013-02-05 17:59:46 -08:00
identity.rb [openstack|identity] Configurable :openstack_endpoint_type 2013-01-24 11:38:45 +01:00
image.rb Added multi-region support for OpenStack Image service 2012-12-21 12:54:53 -07:00
network.rb updated for ruby naming conventions. 2012-12-22 14:26:43 +09:00
README.identity.md [openstack|identity] Added sample code to README.identity.md 2012-12-04 11:30:41 +01:00
storage.rb [openstack|storage] replace 'object_store' service type with 'object-store' 2013-01-28 21:46:32 +01:00
volume.rb [openstack|volume] remove extra comma 2013-01-28 11:25:03 +01:00

OpenStack Identity Service (Keystone) Example

require 'fog'
require 'pp'

auth_url = "https://example.net/v2.0/tokens"
username = 'admin@example.net'
password = 'secret'

keystone = Fog::Identity.new :provider           => 'OpenStack',
                             :openstack_auth_url => auth_url,
                             :openstack_username => username,
                             :openstack_api_key  => password
                             # Optional, self-signed certs
                             #:connection_options => { :ssl_verify_peer => false }

#
# Listing keystone tenants
#
keystone.tenants.each do |tenant|
  # <Fog::Identity::OpenStack::Tenant
  #   id="46b4ab...",
  #   description=nil,
  #   enabled=1,
  #   name="admin@example.net"
  # >
  #pp tenant
end

#
# List users
#
keystone.users.each do |user|
  # <Fog::Identity::OpenStack::User
  #   id="c975f...",
  #   email="quantum@example.net",
  #   enabled=true,
  #   name="quantum",
  #   tenant_id="00928...",
  #   password=nil
  # >
  # ...
  #pp user
end

#
# Create a new tenant
#
tenant = keystone.tenants.create :name        => 'rubiojr@example.net',
                                 :description => 'My foo tenant'

#
# Create a new user
#
user = keystone.users.create :name      => 'rubiojr@example.net',
                             :tenant_id => tenant.id,
                             :password  => 'rubiojr@example.net',
                             :email     => 'rubiojr@example.net'


# Find the recently created tenant
tenant = keystone.tenants.find { |t| t.name == 'rubiojr@example.net' }
# Destroy the tenant
tenant.destroy

# Find the recently created user 
user = keystone.users.find { |u| u.name == 'rubiojr@example.net' }
# Destroy the user
user.destroy