-
Notifications
You must be signed in to change notification settings - Fork 446
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
Added secret variables support for DDM. #24969
Conversation
func Up_20241220114903(tx *sql.Tx) error { | ||
_, err := tx.Exec(` | ||
ALTER TABLE mdm_apple_declarations | ||
CHANGE raw_json raw_json MEDIUMTEXT COLLATE utf8mb4_unicode_ci NOT NULL -- 16MB max size`) |
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.
In case the user substitutes the secret outside of a string I presume? Could you just add a small comment explaining that change for future reference?
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.
Yes, like:
"Payload": {
"RequireAlphanumericPasscode": true,
"MinimumLength": $FLEET_SECRET_PASSCODE_LENGTH,
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.
Looks splendid, have a happy holidays and see you in the new year!
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #24969 +/- ##
==========================================
- Coverage 63.58% 63.57% -0.01%
==========================================
Files 1606 1607 +1
Lines 152219 152235 +16
Branches 3878 3878
==========================================
- Hits 96785 96784 -1
- Misses 47729 47742 +13
- Partials 7705 7709 +4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
#24548 Adding secret variables support for DDM profiles.
Checklist for submitter
COLLATE utf8mb4_unicode_ci
).