aboutsummaryrefslogtreecommitdiffstats
path: root/heatbridge/heatbridge/OpenstackContext.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatbridge/heatbridge/OpenstackContext.py')
-rw-r--r--heatbridge/heatbridge/OpenstackContext.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/heatbridge/heatbridge/OpenstackContext.py b/heatbridge/heatbridge/OpenstackContext.py
index 5e852a2..55661d3 100644
--- a/heatbridge/heatbridge/OpenstackContext.py
+++ b/heatbridge/heatbridge/OpenstackContext.py
@@ -7,10 +7,14 @@ class OpenstackContext:
tenant = None;
region = None;
owner = None;
+ domain_id = None;
+ project_name = None;
- def __init__(self, username, password, tenant, region, owner):
+ def __init__(self, username, password, tenant, region, owner, domain_id, project_name):
self.username = username;
self.password = password;
self.tenant = tenant;
self.region = region;
- self.owner = owner; \ No newline at end of file
+ self.owner = owner;
+ self.domain_id = domain_id;
+ self.project_name = project_name;