-
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
New Resource : azurerm_servicebus_namespace_disaster_recovery_config (Service Bus Geo DR) #11638
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 @1-xtra - i've given this an initial review with comments left inline
azurerm/internal/services/servicebus/servicebus_namespace_disaster_recovery_config_resource.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/servicebus/servicebus_namespace_disaster_recovery_config_resource.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/servicebus/servicebus_namespace_disaster_recovery_config_resource.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/servicebus/servicebus_namespace_disaster_recovery_config_test.go
Outdated
Show resolved
Hide resolved
website/docs/r/servicebus_namespace_disaster_recovery_config.html.markdown
Show resolved
Hide resolved
website/docs/r/servicebus_namespace_disaster_recovery_config.html.markdown
Show resolved
Hide resolved
Changes done : $ TF_ACC=1 go test -v ./azurerm/internal/services/servicebus -run=TestAccAzureRMServiceBusNamespacePairing_basic -timeout 180m -ldflags="-X=github.com/terraform-providers/terraform-provider-azurerm/version.ProviderVersion=acc" |
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 @1-xtra - LGTM 👍
Thanks @katbyte - my bad , didn't run-tflint - just done & shall be pushing a commit shortly that fixes the failed check. I have a vested interest in getting this over the line as a project I'm working on requires it. If anything needs more attention or polishing, just give me a mention & I'm happy to jump in. |
This has been released in version 2.59.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.59.0"
}
# ... other configuration ... |
…(Service Bus Geo DR) (hashicorp#11638) Co-authored-by: Dylan Morley <[email protected]>
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. |
As per issue #3136, implemented a disaster resource config resource, following the same pattern as the 'Event Hubs Geo DR config' (which is very similar)
Mainly putting this here for a bit of visibility and early feedback. Basic test is passing - still need to add the update tests
Any comments appreciated,