-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
azurerm_app_service_certificate_order
- fix the incorrect ID issue
#25428
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @xiaxyi, aside from one comment on the state migration could you also update the import statement in the docs with the new ID?
|
||
type AppServiceCertificateOrderResourceV0ToV1 struct{} | ||
|
||
func (AppServiceCertificateOrderResourceV0ToV1) Schema() map[string]*pluginsdk.Schema { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a guide on state migrations in the contributor docs which explains which attributes are necessary and which can be omitted in the schema (point 3.) Can you please update the schema here and remove attributes that are unnecessary e.g. ForceNew
, Default
etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed the unnecessary fields. As for the docs, the ID was formatted in the correct way:
terraform import azurerm_app_service_certificate_order.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.CertificateRegistration/certificateOrders/certificateorder1
https://github.com/hashicorp/terraform-provider-azurerm/blob/main/website/docs/r/app_service_certificate_order.html.markdown?plain=1#L107
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @xiaxyi LGTM 🏖️
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. |
Community Note
Description
The current ID
/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Web/certificateOrders/%s
being parsed is incorrect, the certificate order doesn't belong toMicrosoft.Web
, instead, it should belong toMicrosoft.CertificateRegistration
PR Checklist
For example: “
resource_name_here
- description of change e.g. adding propertynew_property_name_here
”Changes to existing Resource / Data Source
Testing
TF schema version before migration:
after migration:
Change Log
Below please provide what should go into the changelog (if anything) conforming to the Changelog Format documented here.
azurerm_app_service_certificate_order
- fix incorrect resource ID issue.This is a (please select all that apply):
Related Issue(s)
Fixes #0000
Note
If this PR changes meaningfully during the course of review please update the title and description as required.