Skip to content

Commit

Permalink
Update variables.tf (#19)
Browse files Browse the repository at this point in the history
* Update variables.tf

* Update variables.tf

* Docs updated
  • Loading branch information
WoodProgrammer authored and aknysh committed Jan 9, 2019
1 parent ed71ef5 commit a1e6e80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Available targets:
| name | Name (_e.g._ `app` or `wordpress`) | string | `app` | no |
| namespace | Namespace (_e.g._ `cp` or `cloudposse`) | string | `global` | no |
| performance_mode | The file system performance mode. Can be either `generalPurpose` or `maxIO` | string | `generalPurpose` | no |
| provisioned_throughput_in_mibps | The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with throughput_mode set to provisioned. | string | `` | no |
| provisioned_throughput_in_mibps | The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with throughput_mode set to provisioned. | string | `0` | no |
| security_groups | AWS security group IDs to allow to connect to the EFS | list | - | yes |
| stage | Stage (_e.g._ `prod`, `dev`, `staging`) | string | `default` | no |
| subnets | AWS subnet IDs | list | - | yes |
Expand All @@ -107,7 +107,7 @@ Available targets:
| dns_name | DNS name |
| host | Assigned DNS-record for the EFS |
| id | EFS ID |
| mount_target_dns_names | The DNS names for the given subnet/AZ per documented convention. |
| mount_target_dns_names | List of DNS names for the given subnet/AZ per documented convention. |
| mount_target_ids | List of IDs of the EFS mount targets (one per Availability Zone) |
| mount_target_ips | List of IPs of the EFS mount targets (one per Availability Zone) |
| network_interface_ids | The IDs of the network interface that Amazon EFS created when it created the mount target. |
Expand Down Expand Up @@ -193,7 +193,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.

## Copyright

Copyright © 2017-2018 [Cloud Posse, LLC](https://cpco.io/copyright)
Copyright © 2017-2019 [Cloud Posse, LLC](https://cpco.io/copyright)



Expand Down
4 changes: 2 additions & 2 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
| name | Name (_e.g._ `app` or `wordpress`) | string | `app` | no |
| namespace | Namespace (_e.g._ `cp` or `cloudposse`) | string | `global` | no |
| performance_mode | The file system performance mode. Can be either `generalPurpose` or `maxIO` | string | `generalPurpose` | no |
| provisioned_throughput_in_mibps | The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with throughput_mode set to provisioned. | string | `` | no |
| provisioned_throughput_in_mibps | The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with throughput_mode set to provisioned. | string | `0` | no |
| security_groups | AWS security group IDs to allow to connect to the EFS | list | - | yes |
| stage | Stage (_e.g._ `prod`, `dev`, `staging`) | string | `default` | no |
| subnets | AWS subnet IDs | list | - | yes |
Expand All @@ -28,7 +28,7 @@
| dns_name | DNS name |
| host | Assigned DNS-record for the EFS |
| id | EFS ID |
| mount_target_dns_names | The DNS names for the given subnet/AZ per documented convention. |
| mount_target_dns_names | List of DNS names for the given subnet/AZ per documented convention. |
| mount_target_ids | List of IDs of the EFS mount targets (one per Availability Zone) |
| mount_target_ips | List of IPs of the EFS mount targets (one per Availability Zone) |
| network_interface_ids | The IDs of the network interface that Amazon EFS created when it created the mount target. |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ variable "performance_mode" {
}

variable "provisioned_throughput_in_mibps" {
default = ""
default = 0
description = "The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with throughput_mode set to provisioned."
}

Expand Down

0 comments on commit a1e6e80

Please sign in to comment.