Skip to content

Commit

Permalink
Add rubrik_archive_name to output and update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-russell authored Apr 11, 2019
2 parents eadd4e5 + 64350f2 commit dbac752
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ The following are the variables accepted by the module.
| WARNING: The new IAM User Secret key is stored in plaintext in the `terraform.tfstate` file. Please ensure this file is stored properly. |
| --- |

## Outputs

The following are the variables outputed by the module.

| Name | Description |
|---------------------|-----------------------------------------------------------------|
| aws_iam_user_name | The name of the AWS IAM User created. |
| rubrik_archive_name | he name of the archival location created on the Rubrik cluster. |



## Prerequisites
Expand Down
9 changes: 9 additions & 0 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ The following are the variables accepted by the module.
| WARNING: The new IAM User Secret key is stored in plaintext in the `terraform.tfstate` file. Please ensure this file is stored properly. |
| --- |

## Outputs

The following are the variables outputed by the module.

| Name | Description |
|---------------------|-----------------------------------------------------------------|
| aws_iam_user_name | The name of the AWS IAM User created. |
| rubrik_archive_name | he name of the archival location created on the Rubrik cluster. |

## Running the Terraform Configuration

This section outlines what is required to run the configuration defined above.
Expand Down
7 changes: 6 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
output "aws_iam_user_name" {
description = "The name of the IAM User created."
description = "The name of the AWS IAM User created."
value = "${aws_iam_user.rubrik.name}"
}

output "rubrik_archive_name" {
description = "The name of the archival location created on the Rubrik cluster."
value = "${rubrik_aws_s3_cloudout.archive-target.archive_name}"
}

0 comments on commit dbac752

Please sign in to comment.