Anton Kozyrev created LIBCLOUD-839:
--------------------------------------
Summary: ELB driver doesn't support IAM role temporary credentials
Key: LIBCLOUD-839
URL: https://issues.apache.org/jira/browse/LIBCLOUD-839
Project: Libcloud
Issue Type: Improvement
Components: LoadBalancer
Reporter: Anton Kozyrev
Priority: Minor
Token parameter is not accepted by the driver:
{code}
class ElasticLBDriver(Driver):
name = 'Amazon Elastic Load Balancing'
website = 'http://aws.amazon.com/elasticloadbalancing/'
connectionCls = ELBConnection
signature_version = '4'
def __init__(self, access_id, secret, region):
super(ElasticLBDriver, self).__init__(access_id, secret)
self.region = region
self.region_name = region
self.connection.host = HOST % (region)
{code}
This way it's impossible to use temporary IAM role creds with AWS ELB driver.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)