Skip to content
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

provider/aws: aws_elasticache_replication_group_id validation change #8381

Merged
merged 1 commit into from
Aug 23, 2016

Commits on Aug 22, 2016

  1. provider/aws: aws_elasticache_replication_group_id validation change

    The AWS documentation tells us the following:
    
    ```
    --replication-group-id (string)
    
    The replication group identifier. This parameter is stored as a
    lowercase string.
    Constraints:
    A name must contain from *1 to 20* alphanumeric characters or hyphens.
    The first character must be a letter.
    A name cannot end with a hyphen or contain two consecutive hyphens.
    ```
    
    This is not correct and is causing users errors:
    
    ```
    * aws_elasticache_replication_group.bar: Error creating Elasticache
    * Replication Group: InvalidParameterValue: Replication group id should
    * be no more than 16 characters.
        status code: 400, request id:
    ```
    
    Tuning the Validation from 20 to 16 characters to avoid user issues
    stack72 committed Aug 22, 2016
    Configuration menu
    Copy the full SHA
    4ddb342 View commit details
    Browse the repository at this point in the history