You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're not in us-east-1 (the default ec2.amazonaws.com) you need to specify it in data bag. Looking at the template elasticsearch.yml.erb:
<%= print_value 'cloud.aws.ec2.endpoint' -%>
In aws attributes:
default.elasticsearch[:cloud][:ec2][:endpoint] = ( aws['cloud']['ec2']['endpoint'] rescue nil )
Should be:
default.elasticsearch[:cloud][:aws][:ec2][:endpoint] = ( aws['cloud']['aws']['ec2']['endpoint'] rescue nil )
Thanks,
Maciek
The text was updated successfully, but these errors were encountered:
If you're not in us-east-1 (the default ec2.amazonaws.com) you need to specify it in data bag. Looking at the template elasticsearch.yml.erb:
<%= print_value 'cloud.aws.ec2.endpoint' -%>
In aws attributes:
default.elasticsearch[:cloud][:ec2][:endpoint] = ( aws['cloud']['ec2']['endpoint'] rescue nil )
Should be:
default.elasticsearch[:cloud][:aws][:ec2][:endpoint] = ( aws['cloud']['aws']['ec2']['endpoint'] rescue nil )
Thanks,
Maciek
The text was updated successfully, but these errors were encountered: