Skip to content

Commit

Permalink
Merge pull request #10 from aws-ia/gen-docs
Browse files Browse the repository at this point in the history
Update readme by running terraform-docs
  • Loading branch information
tlindsay42 committed Apr 15, 2022
2 parents 4270c70 + 4af633d commit a718aab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!-- BEGIN_TF_DOCS -->
# vSphere Tags Terraform Module

Terraform module that either creates or imports a list of [tags][tags] grouped in a [tag category][category] in your [VMware Cloud on AWS][vmconaws] or [VMware vSphere][vsphere] on&#8209;premises environment for labeling your inventory objects with metadata to make it easier to sort and search for these objects.
This Terraform module either creates or imports a list of [tags][tags] grouped in a [tag category][category] in your [VMware Cloud on AWS][vmconaws] or [VMware vSphere][vsphere] on&#8209;premises environment. You use these tags to label your inventory objects with metadata to make it easier to sort and search for these objects.

Of note, tags and categories can span multiple [vCenter Server][vsphere] instances.
When you use [Hybrid Linked Mode][hybrid], tags and tag categories are maintained across your linked domain, which means the on&#8209;premises and VMware Cloud on AWS software&#8209;defined data centers (SDDCs) share tags and tag attributes.
Tags and categories can span multiple [vCenter Server][vsphere] instances.
When you use [Hybrid Linked Mode][hybrid], tags and tag categories are maintained across your linked domain. So in this mode, the on&#8209;premises and VMware Cloud on AWS software&#8209;defined data centers (SDDCs) share tags and tag attributes.
If multiple on&#8209;premises vCenter Server instances are configured to use [Enhanced Linked Mode][enhanced], tags and categories are replicated across the vCenter Server instances.

## Usage
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ output "tag_category" {
}

output "tags" {
description = "The vSphere tags."
description = "The list of vSphere tags."
value = module.vsphere_tags.tags
}
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ output "tag_category" {
}

output "tags" {
description = "The vSphere tags."
description = "The list of vSphere tags."
value = (var.create_tags) ? vsphere_tag.tags : data.vsphere_tag.tags
}

0 comments on commit a718aab

Please sign in to comment.