-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
45 lines (34 loc) · 1.04 KB
/
README
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
Puppet Aviator
A feature module for the Aviator project.
Aviator is a lightweight library for communicating with the OpenStack
API
See Aviator_README.md for more information on Aviator.
License
-------
MIT License
Contact
-------
Aimon Bustardo <me at aimon dot net>
Example Usage:
-------
$LOAD_PATH.push(File.join(File.dirname(__FILE__), '..', '..',
'..'))
require 'puppet/feature/aviator'
configuration = {
:provider => 'openstack',
:auth_service => {
:name => 'identity',
:host_uri => 'http://devstack:5000/v2.0',
:request => 'create_token',
:validator => 'list_tenants'
},
:auth_credentials => {
:username => 'myusername',
:password => 'mypassword',
:tenant_name => 'myproject'
}
}
openstack = Aviator::Session.new(:config => configuration)
openstack.authenticate
response = openstack.request :identity_service, :list_tenants, :endpoint_type => 'admin'
puts response[:body]