29621/issue-with-rds-import-terraform
I am new to terraform
I've created RDS manually in AWS.
Now I tried to import RDS into terraform using https://www.terraform.io/docs/providers/aws/r/db_instance.html so that I can use terraform to update RDS. The database name is mydb. I have ran terraform init but got this error, still not sure how to resolve it. Please advise. thx
terraform import aws_db_instance mydb Error: invalid resource address "aws_db_instance" For information on valid syntax, see: https://www.terraform.io/docs/internals/resource-addressing.html
I guess this was the mistake you were doing:
Try this it will work fine
resource "aws_db_instance" "xyz"{ #... db configuration... }
run terraform import aws_db_instance.xyz aws_arn_for_db
I don't think remote-exec is what you ...READ MORE
I solved the problem. I'm using pipenv ...READ MORE
I have seen that on our flannel ...READ MORE
Hi@pradip, I think you need to import some ...READ MORE
Hi, It totally depends on your understanding and ...READ MORE
Security groups present in a VPC provides ...READ MORE
Security groups in a VPC is basically ...READ MORE
Stateful filtering is used to track the ...READ MORE
CognitoUserPoolsSignInProvider is ditributed as part of aws-android-sdk-auth-userpools library. Please import ...READ MORE
It sounds like the issue you are ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.