-
Notifications
You must be signed in to change notification settings - Fork 3
ENG-1345 selection_tag docs #130
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,3 +15,7 @@ | |
| .DS_Store | ||
| *__pycache__ | ||
| .github/instructions/memory.instructions.md | ||
|
|
||
| # Local temporary files | ||
| tmp/ | ||
| temp/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -147,9 +147,15 @@ module "source" { | |
| "schedule" : "cron(0 0 * * ? *)" | ||
| } | ||
| ], | ||
| # selection_tag determines which resources this plan backs up. | ||
| # Use any tag key that suits your project. For production, we recommend "NHSE-Enable-Backup". | ||
| # For multi-environment accounts, use a distinct tag per environment to avoid plan collisions. | ||
| # See the Tagging Strategy section in the root README for full guidance. | ||
| "selection_tag" : "NHSE-Enable-Backup" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After speaking to Susana as well i think we should remove "selection_tags" section from the example to deter people from further using it. and potentially leave a comment saying further information and possible extensions of section_tags can be found in # See the Tagging Strategy section in the root README for full guidance. |
||
| # The selection_tags are optional and can be used to | ||
| # provide fine grained resource selection with existing tagging | ||
| # selection_tags (optional) adds extra tag conditions as a logical AND. | ||
| # Only resources matching ALL tags (selection_tag + selection_tags) will be backed up. | ||
| # Note: the compliance framework only evaluates the primary selection_tag, so using | ||
| # selection_tags for environment separation may cause false non-compliance reports. | ||
| "selection_tags" : [ | ||
| { | ||
| "key" : "Environment" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v1.4.6 | ||
| v1.4.7 |
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.