-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Promote BackupDR Backup and Data Source to GA (#12435)
- Loading branch information
Showing
7 changed files
with
60 additions
and
12 deletions.
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
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
29 changes: 29 additions & 0 deletions
29
mmv1/third_party/terraform/website/docs/d/backup_dr_backup.html.markdown
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
subcategory: "Backup and DR Backup" | ||
description: |- | ||
Get information about a Backupdr Backup. | ||
--- | ||
|
||
# google_backup_dr_backup | ||
|
||
A Backup and DR Backup. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "google_backup_dr_backup" "foo" { | ||
location = "us-central1" | ||
project = "project-test" | ||
data_source_id = "ds-test" | ||
backup_vault_id = "bv-test" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `location` - (Required) The location in which the Backup belongs. | ||
* `project` - (Required) The Google Cloud Project in which the Backup belongs. | ||
* `data_source_id` - (Required) The ID of the Data Source in which the Backup belongs. | ||
* `backup_vault_id` - (Required) The ID of the Backup Vault of the Data Source in which the Backup belongs. |
29 changes: 29 additions & 0 deletions
29
mmv1/third_party/terraform/website/docs/d/backup_dr_data_source.html.markdown
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
subcategory: "Backup and DR Data Source" | ||
description: |- | ||
Get information about a Backupdr Data Source. | ||
--- | ||
|
||
# google_backup_dr_data_source | ||
|
||
A Backup and DR Data Source. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "google_backup_dr_data_source" "foo" { | ||
location = "us-central1" | ||
project = "project-test" | ||
data_source_id = "ds-test" | ||
backup_vault_id = "bv-test" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `location` - (Required) The location in which the Data Source belongs. | ||
* `project` - (Required) The Google Cloud Project in which the Data Source belongs. | ||
* `data_source_id` - (Required) The ID of the Data Source. | ||
* `backup_vault_id` - (Required) The ID of the Backup Vault in which the Data Source belongs. |