1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# OpenStack Identity Service (Keystone) Example
require 'fog/openstack'
require 'pp'
auth_url = "https://example.net"
username = 'admin@example.net'
password = 'secret'
tenant = 'admin'
keystone = Fog::OpenStack::Identity.new :openstack_auth_url => auth_url,
:openstack_username => username,
:openstack_api_key => password,
:openstack_tenant => tenant
# Optional, self-signed certs
#:connection_options => { :ssl_verify_peer => false }
#
# Listing keystone tenants
#
keystone.tenants.each do |tenant|
# <Fog::OpenStack::Identity::Tenant
# id="46b4ab...",
# description=nil,
# enabled=1,
# name="admin@example.net"
# >
pp tenant
end
#
# List users
#
keystone.users.each do |user|
# <Fog::OpenStack::Identity::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
|