[Bug]: Cannot import aws_route53_delegation_set with reference_name #40425
Open
Description
Terraform Core Version
1.9.2
AWS Provider Version
5.60.0
Affected Resource(s)
aws_route53_delegation_set
Expected Behavior
Import works without deleting/recreating the resource.
Actual Behavior
Terraform plan states that the reference_name
option will force recreation of the resource upon import.
Relevant Error/Panic Output Snippet
No response
Terraform Configuration Files
resource "aws_route53_delegation_set" "main" {
reference_name = "main"
}
import {
to = aws_route53_delegation_set.main
id = "N07462849572ECPH4JW2B"
}
Steps to Reproduce
- Create aws_route53_delegation_set with
reference_name
option set in one module.
2, Runterraform plan
to import the aws_route53_delegation_set in another module.
Debug Output
No response
Panic Output
No response
Important Factoids
No response
References
aws_route53_delegation_set import doesn't bring in reference_name #8476
Resource aws_route53_delegation_set Imports do not work with auto-generated Terraform Suffix #26434
Would you like to implement a fix?
No