-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
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
New Resource: aws_dax_cluster #1722
Conversation
@radeksimko Any chance of a review? This was previously opened as #1515 but split out to only have 1 resource for the first review |
```hcl | ||
resource "aws_dax_cluster" "bar" { | ||
cluster_id = "cluster-example" | ||
iam_role_arn = "arn:aws:iams:us-east-1:012345678999" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think an IAM role ARN looks like arn:aws:iam:us-east-1:123456789012:role/foo
.
Hi @gazoakley Do you think you could move the vendoring part into its own PR, so that it's easier to review this work? :) Thanks! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
This adds support for managing AWS DynamoDB Accelerator (DAX). It adds a new
aws_dax_cluster
resource. There is code ready for aaws_dax_subnet_group
but it is not present in this PR to simplify review.