-
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_integration_service_environment #7763
New resource - azurerm_integration_service_environment #7763
Conversation
…ng for links delete on subnets
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.
@jbinko, thanks so much for this! This mostly looks good but I added a few comments, which are mostly fairly minor, but it is looking really good and I appreciate all the effort you put in to creating the PR! This is looking awesome! Once the changes are push we can get this merged into main! Thanks again! 🚀
azurerm/internal/services/logic/integration_service_environment.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/integration_service_environment.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/integration_service_environment.go
Outdated
Show resolved
Hide resolved
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.
spotted a couple of things whilst passing through
azurerm/internal/services/logic/integration_service_environment.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/integration_service_environment.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/integration_service_environment.go
Outdated
Show resolved
Hide resolved
…ertiesFormat and link.ServiceAssociationLinkPropertiesFormat.Link
…ural, documentation
I agree with all the comments above. Thank you for review. In my opinion, introducing additional artificial sku name Developer_0 will |
@jbinko, sorry for the late reply... the reason we flatten the Oh one other thing I forgot to mention, in the docs, be sure to mention the order they need to be in, like the below example from the PostgreSQL Server documentation:
|
@jbinko - you can also validate the sku_name with regex/a custom validation function that splits it apart. We spent some effort earlier this year to move resources to |
@WodansSon, @katbyte: Got it. Now I understand. I changed sku_name as you proposed. Code should be ready for another review. Let me know what do you think. |
@jbinko, thanks for that... I will take a look at this tomorrow morning my time (PST), I've been out for the last few days for eye surgery... |
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.
@jbinko, thanks so much for pushing those changes this LGTM now! 🚀
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.
@jbinko, one thing really quick... super minor, but I've left 5 suggestions to rename the resource group in the test cases. If you can merge those I will merge this PR into master and we can get it into this release! 🚀
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
azurerm/internal/services/logic/tests/integration_service_environment_resource_test.go
Outdated
Show resolved
Hide resolved
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Co-authored-by: WS <[email protected]>
Thanks @WodansSon ! Sure, I merged your suggestions. Done. |
This has been released in version 2.23.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.23.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! |
Support for Integration Service Environments
See spec in the issue above.
It contains:
make test TEST='github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/services/logic/parse' TESTARGS='-run=TestIntegrationServiceEnvironmentId'
make test TEST='github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/services/logic/validate' TESTARGS='-run=TestIntegrationServiceEnvironmentName'
make acctests SERVICE='logic' TESTARGS='-run=TestAccAzureRMIntegrationServiceEnvironment_basic' TESTTIMEOUT='600m'
make acctests SERVICE='logic' TESTARGS='-run=TestAccAzureRMIntegrationServiceEnvironment_requiresImport' TESTTIMEOUT='600m'
make acctests SERVICE='logic' TESTARGS='-run=TestAccAzureRMIntegrationServiceEnvironment_update' TESTTIMEOUT='600m'
Please provide feedback.
(fixes #7394)