-
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_backup_policy_vm
- support for the tiering_policy
property
#26263
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
06dbd33
azurerm_backup_policy_vm - support tiering_policy
neil-yechenwei 38fffb2
azurerm_backup_policy_vm - support tiering_policy
neil-yechenwei 203c24d
mark tier_mode as required
neil-yechenwei 7c8bc42
update resource
neil-yechenwei a99e06d
update md
neil-yechenwei 1eea1cb
rename tiering_mode to mode
neil-yechenwei c23c3e1
update md for archived_rp
neil-yechenwei 0545232
rename to archived_restore_point
neil-yechenwei File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,6 +91,8 @@ The following arguments are supported: | |
|
||
* `retention_yearly` - (Optional) Configures the policy yearly retention as documented in the `retention_yearly` block below. | ||
|
||
* `tiering_policy` - (Optional) A `tiering_policy` block as defined below. | ||
|
||
--- | ||
|
||
The `backup` block supports: | ||
|
@@ -166,6 +168,14 @@ The `retention_yearly` block supports: | |
|
||
--- | ||
|
||
A `tiering_policy` block supports the following: | ||
|
||
* `tiering_mode` - (Required) The tiering mode to control automatic tiering of recovery points. Possible values are `TierAfter` and `TierRecommended`. | ||
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. i think this can just be mode as tiering is is in the block name? 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. Renamed it to "mode". |
||
|
||
* `duration` - (Optional) The number of days/weeks/months/years to retain backups in current tier before tiering. | ||
|
||
* `duration_type` - (Optional) The retention duration type. Possible values are `Days`, `Weeks`, `Months` and `Years`. | ||
|
||
## Attributes Reference | ||
|
||
In addition to the Arguments listed above - the following Attributes are exported: | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
this isn't in the docs? should it be remoed?
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.
I added it to md file since service team confirmed that they will support other tiers in the future.