-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for specifying Azure resource groups for RSC features (#150) * Update rubrik-polaris-sdk-for-go to v0.10.0-beta.2 (#152) * Show diffs in the beta guide as HCL code (#155) * Improve documentation for resource groups (#154) * Bump the GH Actions Go compiler version to v1.22 (#156) * Add account name and FQDN to the polaris_deployment data source (#157) * Add support for Azure shared exocompute (#160) * Update rubrik-polaris-sdk-for-go to v0.10.0-beta.5 (#165) * Add changelog (#167) * Add support for Azure archival locations (#168) * Move changelog and upgrade guides to guides folder (#170) * Fix Azure permission upgrade issue (#171) * Update changelog (#172) * Add Azure archival location data source (#173) * Improve Azure documentation (#175) * Improve documentation (#176) * Update guides (#180) * Update documentation (#184) * Add support for cluster setup YAML (#186) * Add data sources to look up cloud accounts (#188) * Fix Azure acceptance test (#189) * Add support for updating AWS archival location bucket tags (#187) * Update changelog (#191)
- Loading branch information
1 parent
e1473cd
commit 3edb51e
Showing
118 changed files
with
6,451 additions
and
1,647 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "polaris_account Data Source - terraform-provider-polaris" | ||
subcategory: "" | ||
description: |- | ||
The polaris_account data source is used to access information about the RSC account. | ||
-> Note: The fqdn and name fields are read from the local RSC credentials and | ||
not from RSC. | ||
--- | ||
|
||
# polaris_account (Data Source) | ||
|
||
The `polaris_account` data source is used to access information about the RSC account. | ||
|
||
-> **Note:** The `fqdn` and `name` fields are read from the local RSC credentials and | ||
not from RSC. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Output the features enabled for the RSC account. | ||
data "polaris_account" "account" {} | ||
output "features" { | ||
value = data.polaris_account.account.features | ||
} | ||
# Using the fqdn field from the deployment data source to create an Azure | ||
# AD application. | ||
data "polaris_deployment" "deployment" {} | ||
resource "azuread_application" "app" { | ||
display_name = "Rubrik Security Cloud Integration" | ||
web { | ||
homepage_url = "https://${data.polaris_account.account.fqdn}/setup_azure" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `features` (Set of String) Features enabled for the RSC account. | ||
- `fqdn` (String) Fully qualified domain name of the RSC account. | ||
- `id` (String) SHA-256 hash of the features, the fully qualified domain name and the name. | ||
- `name` (String) RSC account name. |
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,40 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "polaris_aws_account Data Source - terraform-provider-polaris" | ||
subcategory: "" | ||
description: |- | ||
The polaris_aws_account data source is used to access information about an AWS account | ||
added to RSC. An AWS account is looked up using either the AWS account ID or the name. | ||
-> Note: The account name is the name of the AWS account as it appears in RSC. | ||
--- | ||
|
||
# polaris_aws_account (Data Source) | ||
|
||
The `polaris_aws_account` data source is used to access information about an AWS account | ||
added to RSC. An AWS account is looked up using either the AWS account ID or the name. | ||
|
||
-> **Note:** The account name is the name of the AWS account as it appears in RSC. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "polaris_aws_account" "example" { | ||
name = "example" | ||
} | ||
output "example_aws_account" { | ||
value = data.polaris_aws_account.example | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `account_id` (String) AWS account ID. | ||
- `name` (String) AWS account name. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) RSC cloud account ID (UUID). |
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
Oops, something went wrong.