Skip to content

Commit

Permalink
docs: Change virtual_repository_config variable type
Browse files Browse the repository at this point in the history
  • Loading branch information
romancin committed Feb 26, 2024
1 parent 5f49dcd commit ed767a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Functional examples are included in the
| project\_id | The project ID to create the repository | `string` | n/a | yes |
| remote\_repository\_config | Configuration specific for a Remote Repository. | <pre>object({<br> description = optional(string)<br> apt_repository = optional(object({<br> public_repository = optional(object({<br> repository_base = string<br> repository_path = string<br> }), null)<br> }), null)<br> docker_repository = optional(object({<br> public_repository = optional(string, "DOCKER_HUB")<br> }), null)<br> maven_repository = optional(object({<br> public_repository = optional(string, "MAVEN_CENTRAL")<br> }), null)<br> npm_repository = optional(object({<br> public_repository = optional(string, "NPMJS")<br> }), null)<br> python_repository = optional(object({<br> public_repository = optional(string, "PYPI")<br> }), null)<br> yum_repository = optional(object({<br> public_repository = optional(object({<br> repository_base = string<br> repository_path = string<br> }), null)<br> }), null)<br> })</pre> | `null` | no |
| repository\_id | The repository name | `string` | n/a | yes |
| virtual\_repository\_config | Configuration specific for a Virtual Repository. | <pre>object({<br> upstream_policies = optional(object({<br> id = string<br> repository = string<br> priority = number<br> }), null)<br> })</pre> | `null` | no |
| virtual\_repository\_config | Configuration specific for a Virtual Repository. | <pre>object({<br> upstream_policies = optional(list(object({<br> id = string<br> repository = string<br> priority = number<br> })), null)<br> })</pre> | `null` | no |
| vpcsc\_policy | The VPC SC policy for project and location. Possible values are: DENY, ALLOW | `string` | `"ALLOW"` | no |

## Outputs
Expand Down

0 comments on commit ed767a8

Please sign in to comment.