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
I found that this module wouldn't work unless I created the ES service linked role first (for service "es.amazonaws.com").
The reason for this is that if the role doesn't already exist the data source element fails (https://github.com/cloudposse/terraform-aws-elasticsearch/blob/master/main.tf#L68) and the module won't complete.
The create_iam_service_linked_role variable was added a while ago to deal with this issue, however it seems the variable value is not used.
create_iam_service_linked_role
The module should run even if the service linked role doesn't exist
terraform apply
TF 0.12.21
The text was updated successfully, but these errors were encountered:
If anyone is looking for a workaround until this issue is resolved all you need to do is:
aws iam create-service-linked-role --aws-service-name es.amazonaws.com
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I found that this module wouldn't work unless I created the ES service linked role first (for service "es.amazonaws.com").
The reason for this is that if the role doesn't already exist the data source element fails (https://github.com/cloudposse/terraform-aws-elasticsearch/blob/master/main.tf#L68) and the module won't complete.
The
create_iam_service_linked_role
variable was added a while ago to deal with this issue, however it seems the variable value is not used.Expected Behavior
The module should run even if the service linked role doesn't exist
Steps to Reproduce
create_iam_service_linked_role
to trueterraform apply
Environment (please complete the following information):
TF 0.12.21
The text was updated successfully, but these errors were encountered: