-
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
Support for eventgrid_domain_subscription #6952
Comments
Hi @Hjortsberg, it's a bug inside the resource ID parsing logic for event subscriptions. Sorry for that. I try to fix it asap and write some tests for it. and |
Much appriciated! 👍 |
To be more precise here. There is no new resource needed here. Should work out of the box using the already existing Furthermore maybe this PR is of interest for you: #6860 It contains support for the |
Oh, I missed that you had implemented function endpoints too, will have to try that out! |
If I will go back to one of previous versions will this be resolved temporarily? |
This has been released in version 2.11.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example: provider "azurerm" {
version = "~> 2.11.0"
}
# ... other configuration ... |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
Community Note
Description
We make use of event grid domains, topics and subscriptions.
However Terraform seems to lack the ability to create eventgrid domain subscriptions.
@jrauschenbusch and @katbyte has made some really welcome contributions for the ability to create event grid domains and the related topics.
We would like to be able to have Terraform provision E.g a Function and an event grid domain subscription for that function.
We have tried to set it up with a normal
azurerm_eventgrid_event_subscription
but then the Terraform helper resourceid.go kicks in and considers the resource-id invalid and we get aError: ID contained more segments than required
.New or Affected Resource(s)
Potential Terraform Configuration
Currently this is what we tried and thought would work.
References
The text was updated successfully, but these errors were encountered: