We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the ecs_service resource described here https://github.com/k1LoW/awspec/blob/master/doc/_resource_types/ecs_service.md, when the cluster is not default it will fail.
e.g.
describe ecs_service('my-ecs-service') do it { should exist } end
fails with
Aws::ECS::Errors::ClusterNotFoundException: Cluster not found.
Where the cluster is not default you need to pass the cluster name e.g. for cluster named 'non-default':
describe ecs_service('my-ecs-service'), cluster: 'not-default' do it { should exist } end
Could the docs in the link be updated accordingly.
The text was updated successfully, but these errors were encountered:
@MarkWoods1977 Thank you for your report !!
Sorry, something went wrong.
No branches or pull requests
When using the ecs_service resource described here https://github.com/k1LoW/awspec/blob/master/doc/_resource_types/ecs_service.md, when the cluster is not default it will fail.
e.g.
fails with
Where the cluster is not default you need to pass the cluster name e.g. for cluster named 'non-default':
describe ecs_service('my-ecs-service'), cluster: 'not-default' do
it { should exist }
end
Could the docs in the link be updated accordingly.
The text was updated successfully, but these errors were encountered: