-
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_container_app_job
- Add Identity
property to Container App Job Scaling Rules
#27489
base: main
Are you sure you want to change the base?
Conversation
@Dionmm thank you, I'm looking forward to using it! Is it correct that you have implemented managed identity for scale rules both for It looks like you have only updated the documentation for |
@ghjklw This only implements it for the |
@@ -2966,6 +2967,16 @@ func CustomScaleRuleSchema() *pluginsdk.Schema { | |||
}, | |||
}, | |||
|
|||
"identity": { |
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.
could we use one of the common schema identity functions here? ie
"identity": commonschema.UserAssignedIdentityOptional(),
This PR is being labeled as "stale" because it has not been updated for 30 or more days. If this PR is still valid, please remove the "stale" label. If this PR is blocked, please add it to the "Blocked" milestone. If you need some help completing this PR, please leave a comment letting us know. Thank you! |
Community Note
Description
In Azure Container App Jobs they have recently added support for authenticating using a managed identity in scaling rules. This allows rules to be added without the need for less secure methods (such as PATs, SAS tokens, or connection strings) to be used for the scaling rules' authentication.
Either user assigned or system identities can be used.
All scaling rules should have an identity property that accepts the resource ID for a user assigned identity or system in the case of a system assigned identity.
PR Checklist
For example: “
resource_name_here
- description of change e.g. adding propertynew_property_name_here
”Changes to existing Resource / Data Source
Some tests appear to be failing on the
main
branch when running locally, specificallyTestAccContainerAppJob_withWorkloadProfileUpdate
Testing
Change Log
Below please provide what should go into the changelog (if anything) conforming to the Changelog Format documented here.
azurerm_container_app_job
- add support for Managed Identity in scaling rulesThis is a (please select all that apply):
Related Issue(s)
Fixes #26570
Related #26994
Note
If this PR changes meaningfully during the course of review please update the title and description as required.