bsmith
2012-11-15 18:17:40 UTC
I feel like I must be missing something obvious, but searching the group
history, the documentation, and the web is failing me...
I'm trying to retrieve a server's user-data using fog, but no matter what I
id="i-5e68b221",
[deleted]
user_data=nil,
vpc_id=nil
Is there a more correct way to retrieve user-data?
Thanks,
-Brian
history, the documentation, and the web is failing me...
I'm trying to retrieve a server's user-data using fog, but no matter what I
instance = connection.servers.pop
<Fog::Compute::AWS::Serverid="i-5e68b221",
[deleted]
user_data=nil,
vpc_id=nil
user_data = instance.user_data
niluser_data = instance.reload.user_data
niluser_data = connection.servers.get('i-5e68b221').user_data
niluser_data = connection.servers.get('i-5e68b221').reload.user_data
nilIs there a more correct way to retrieve user-data?
Thanks,
-Brian