Add new arguments from CreateDbInstance and UpdateDbInstance #40661
+193
−26
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
network_type
added as an argument, adding IPv6 support.port
added as an argument.deployment_type
is now updatable.TestAccTimestreamInfluxDBDBInstance_deploymentType
.db_instance_type
is now updatable.TestAccTimestreamInfluxDBDBInstance_dbInstanceType
has been added with an update step.flex.Expand
is no longer used inUpdate
to populate anUpdateDbInstanceInput
struct. This is because aValidationException
will occur when a DB instance is updated with configuration values it already uses.Update
, ifsecondary_availability_zone
is left as unknown, it is set to its previous value.secondary_availability_zone
can be left as unknown when tags are updated, which causes an error.secondary_availability_zone
uses the default value ofnil
. While unconventional, this prevents an error when updatingdeployment_type
.secondary_availability_zone
's value is directly a result of the value ofdeployment_type
.awstypes.StatusDeleted
has been added as a pending state inwaitDBInstanceDeleted
. This is because DB instances are first given the status"DELETED"
before becoming unreachable. This status is not consistent. Using this status as a target status leads to flaky tests. Using this status as a pending status means Terraform will wait until the instance is unreachable.Relations
N/A.
References
Updated
UpdateDbInstanceInput
struct documentation.Output from Acceptance Testing