Skip to content

Commit

Permalink
removing variables used for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttyso committed Aug 16, 2021
1 parent 0ec770b commit d863af6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
3 changes: 0 additions & 3 deletions modules/domain_vlan_map/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,9 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_apikey"></a> [apikey](#input\_apikey) | Intersight API Key. | `string` | n/a | yes |
| <a name="input_auto_allow_on_uplinks"></a> [auto\_allow\_on\_uplinks](#input\_auto\_allow\_on\_uplinks) | Used to determine whether this VLAN will be allowed on all uplink ports and PCs in this FI. | `bool` | `true` | no |
| <a name="input_endpoint"></a> [endpoint](#input\_endpoint) | Intersight URL. | `string` | `"https://intersight.com"` | no |
| <a name="input_is_native"></a> [is\_native](#input\_is\_native) | Used to determine if this VLAN should be untagged on the interfaces. | `bool` | `false` | no |
| <a name="input_multicast_moid"></a> [multicast\_moid](#input\_multicast\_moid) | Multicast Policy moid map. | `string` | n/a | yes |
| <a name="input_secretkey"></a> [secretkey](#input\_secretkey) | Intersight Secret Key. | `string` | n/a | yes |
| <a name="input_tags"></a> [tags](#input\_tags) | List of Tag Attributes to Assign to the Policy. | `list(map(string))` | `[]` | no |
| <a name="input_vlan_map"></a> [vlan\_map](#input\_vlan\_map) | This VLAN Map should contain key/value pairs of prefix and vlan\_id. In Example:<br>vlan\_map = [<br> {<br> prefix = "test"<br> vlan\_id = 123<br> },<br> {<br> prefix = "test"<br> vlan\_id = 124<br> }<br>]<br>This will be configured as test-vl0123 and test-vl0124 in intersight. | `list(map(string))` | n/a | yes |
| <a name="input_vlan_policy_moid"></a> [vlan\_policy\_moid](#input\_vlan\_policy\_moid) | VLAN Policy (Ethernet Network Policy) moid. | `string` | n/a | yes |
Expand Down
18 changes: 0 additions & 18 deletions modules/domain_vlan_map/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,6 @@
# UCS Domain VLANs Variables Section.
#____________________________________________________________

variable "apikey" {
description = "Intersight API Key."
sensitive = true
type = string
}

variable "endpoint" {
default = "https://intersight.com"
description = "Intersight URL."
type = string
}

variable "secretkey" {
description = "Intersight Secret Key."
sensitive = true
type = string
}

variable "auto_allow_on_uplinks" {
default = true
description = "Used to determine whether this VLAN will be allowed on all uplink ports and PCs in this FI."
Expand Down

0 comments on commit d863af6

Please sign in to comment.