-
Notifications
You must be signed in to change notification settings - Fork 121
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
awscc_dms_data_provider DMS doesn't support aurora_postgresql database β engine #1636
Comments
@kstephensontm , thank you for reporting this issue. according to the enumeration from here the right way to specify the engine is as I realize that Cloudformation documentation also has some inconsistency Could you try this again using : |
@wellsiau-aws I did try this today. The API expects us to use
|
sorry still get an error when putting the correct value ... resource "awscc_dms_data_provider" "dms_data_provider_target" { β Error: AWS SDK Go Service Operation Incomplete |
hi @quixoticmonk is this a bug that just needs to be fixed for aurora_postgresql? |
@quixoticmonk any update on this one? |
Apologies on the delay in responding. I was waiting for the next refresh this week if it did fix the engine listing. I have opened an internal issue against the service team in AWS. @wellsiau-aws FYI |
just tried again with 0.77.0 and still the same error. β Error: AWS SDK Go Service Operation Incomplete |
@kstephensontm , thank you for your patience, we just heard about the fix deployed by service team. do you mind to test it again? since this is a upstream AWS handler issue, I believe you don't need to upgrade the provider. |
does anyone know how to fix this one? |
@quixoticmonk i used the latest 1.18.0 version and I can create a data provider target with "aurora_postgresql". I then run an apply again and it wants to switch the engine from "aurora-postgresql" -> "aurora_postgresql" which then fails. how do we get around this? this makes no sense because I can't supply engine type of aurora-postgresql or it tells me that it is not supported. β Waiting for Cloud Control API service UpdateResource operation completion returned: waiter state transitioned to FAILED. this is trying to set a data provider target to aurora-postgresql ... doesn't work. |
Can you provide us the plan details when you are running the subsequent apply? |
some how i can create it with aurora_postgresql and behind the scenes it becomes aurora-postgresql when created. then you run an apply again and it wants to change it back to aurora_postgresql but fails when trying to apply saying that the engine value doesn't exist. feels like i'm going in circles. awscc_dms_data_provider.dms_data_provider_target will be updated in-place~ resource "awscc_dms_data_provider" "dms_data_provider_target" { |
I have opened another ticket internally to resolve the engine mismatch. Assigning the issue to self to track this. |
Community Note
Terraform CLI and Terraform AWS Cloud Control Provider Version
Affected Resource(s)
Terraform Configuration Files
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
Debug Output
Panic Output
resource "awscc_dms_data_provider" "dms_data_provider_target" {
data_provider_name = "sc-postgresql2"
engine = "aurora_postgresql"
settings = {
postgre_sql_settings = {
database_name = "pssql"
port = 5432
server_name = "postgres-default-1.blah.us-west-2.rds.amazonaws.com"
ssl_mode = "none"
}
}
}
β Error: AWS SDK Go Service Operation Incomplete
β
β with awscc_dms_data_provider.dms_data_provider_target,
β on dms-schema-conversion.tf line 39, in resource "awscc_dms_data_provider" "dms_data_provider_target":
β 39: resource "awscc_dms_data_provider" "dms_data_provider_target" {
β
β Waiting for Cloud Control API service CreateResource operation completion returned: waiter
β state transitioned to FAILED. StatusMessage: DMS doesn't support aurora_postgresql database
β engine. Choose another database engine and try again. (Service: DatabaseMigration, Status
β Code: 400, Request ID: a5033be9-0e1c-457a-bd9a-e751af7e224f). ErrorCode: InvalidRequest
Expected Behavior
Create an aurora postgres data provider.
Actual Behavior
Errors that the data provider postrgres aurora doesn't exist.
Steps to Reproduce
terraform apply
Important Factoids
no
References
https://registry.terraform.io/providers/hashicorp/awscc/latest/docs/resources/dms_data_provider
The text was updated successfully, but these errors were encountered: