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

New Resource: aws_memorydb_cluster #22388

Merged
merged 32 commits into from
Jan 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ac50dd6
r/aws_memorydb_cluster: new resource with minimal attributes
roberth-k Dec 30, 2021
be07031
r/aws_memorydb_cluster: add read-only cluster attributes
roberth-k Dec 30, 2021
b280205
r/aws_memorydb_cluster: implement subnet_group_name attribute & remov…
roberth-k Dec 30, 2021
ab2dc48
r/aws_memorydb_cluster: implement maintenance_window attribute
roberth-k Dec 30, 2021
2ff4e80
r/aws_memorydb_cluster: split tests of defaults and basic configuration
roberth-k Dec 30, 2021
1157b19
r/aws_memorydb_cluster: implement description attribute
roberth-k Dec 31, 2021
4e1f81a
r/aws_memorydb_cluster: test of user-configurable acl_name attribute
roberth-k Dec 31, 2021
1d93afd
r/aws_memorydb_cluster: test of generated name & name_prefix & tags u…
roberth-k Dec 31, 2021
8b55b46
r/aws_memorydb_cluster: implement auto_minor_version_upgrade attribute
roberth-k Dec 31, 2021
c65ac48
r/aws_memorydb_cluster: implement tls_enabled attribute
roberth-k Dec 31, 2021
3f96631
r/aws_memorydb_cluster: more specific cluster endpoint address test
roberth-k Dec 31, 2021
609438f
r/aws_memorydb_cluster: implement engine_version attribute
roberth-k Dec 31, 2021
0de2f43
r/aws_memorydb_cluster: implement kms_key_arn attribute
roberth-k Dec 31, 2021
f9e338d
r/aws_memorydb_cluster: test of user-configurable node_type attribute
roberth-k Dec 31, 2021
f29447b
r/aws_memorydb_cluster: configurable timeouts
roberth-k Dec 31, 2021
f12b116
r/aws_memorydb_cluster: implement num_shards attribute
roberth-k Dec 31, 2021
520b95c
r/aws_memorydb_cluster: implement parameter_group_name attribute
roberth-k Jan 1, 2022
5175a8e
r/aws_memorydb_cluster: add num_replicas_per_shard attribute
roberth-k Jan 1, 2022
7526e40
r/aws_memorydb_cluster: implement security_group_ids attribute
roberth-k Jan 1, 2022
c32c35e
r/aws_memorydb_cluster: implement snapshot_retention_limit
roberth-k Jan 1, 2022
d364091
r/aws_memorydb_cluster: set num_replicas_per_shard to 0 in most tests
roberth-k Jan 1, 2022
227d6d2
r/aws_memorydb_cluster: implement snapshot_window attribute
roberth-k Jan 1, 2022
5d6f95c
r/aws_memorydb_cluster: implement snapshot_name attribute
roberth-k Jan 1, 2022
3d75fe0
r/aws_memorydb_cluster: add port attribute
roberth-k Jan 1, 2022
b8871b5
r/aws_memorydb_cluster: implement sns_topic_arn attribute
roberth-k Jan 1, 2022
c5286ff
r/aws_memorydb_cluster: add final_snapshot_name attribute
roberth-k Jan 1, 2022
1c33449
r/aws_memorydb_cluster: add snapshot_arns attribute
roberth-k Jan 1, 2022
abf9adf
r/aws_memorydb_cluster: add shards attribute
roberth-k Jan 1, 2022
2f998eb
r/aws_memorydb_cluster: wait for security group removals
roberth-k Jan 2, 2022
909da9b
r/aws_memorydb_cluster: add resource documentation
roberth-k Jan 1, 2022
675f42e
r/aws_memorydb_cluster: add changelog entry
roberth-k Jan 3, 2022
a2871f9
r/aws_memorydb_cluster: linter fix
roberth-k Jan 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/22388.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_memorydb_cluster
```
1 change: 1 addition & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1387,6 +1387,7 @@ func Provider() *schema.Provider {
"aws_media_store_container_policy": mediastore.ResourceContainerPolicy(),

"aws_memorydb_acl": memorydb.ResourceACL(),
"aws_memorydb_cluster": memorydb.ResourceCluster(),
"aws_memorydb_parameter_group": memorydb.ResourceParameterGroup(),
"aws_memorydb_subnet_group": memorydb.ResourceSubnetGroup(),
"aws_memorydb_user": memorydb.ResourceUser(),
Expand Down
Loading