Skip to content

Commit

Permalink
fix: Correct the service_project_ids type (#152)
Browse files Browse the repository at this point in the history
* fix: service_project_ids type

Quoted type constraints are deprecated

* make generate_docs
  • Loading branch information
marshallford authored Feb 4, 2020
1 parent 5f61ffb commit 80b6f54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/fabric-net-svpc-access/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module "net-shared-vpc-access" {
| host\_subnet\_regions | List of subnet regions, one per subnet. | list | `<list>` | no |
| host\_subnet\_users | Map of comma-delimited IAM-style members to which network user roles for subnets will be assigned. | map | `<map>` | no |
| host\_subnets | List of subnet names on which to grant network user role. | list | `<list>` | no |
| service\_project\_ids | Ids of the service projects that will be attached to the Shared VPC. | list | n/a | yes |
| service\_project\_ids | Ids of the service projects that will be attached to the Shared VPC. | list(string) | n/a | yes |
| service\_project\_num | Number of service projects that will be attached to the Shared VPC. | string | `"0"` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion modules/fabric-net-svpc-access/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ variable "service_project_num" {

variable "service_project_ids" {
description = "Ids of the service projects that will be attached to the Shared VPC."
type = "list"
type = list(string)
}

variable "host_subnets" {
Expand Down

0 comments on commit 80b6f54

Please sign in to comment.