File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Fixed
11+
12+ - ` var.app_installations ` should be a of type ` set(string) ` instead of ` set(number) `
13+
1014## [ 0.16.1]
1115
1216### Added
Original file line number Diff line number Diff line change @@ -811,7 +811,7 @@ This is due to some terraform limitation and we will update the module once terr
811811
812812#### App Installations
813813
814- - [ ** ` app_installations ` ** ] ( #var-app_installations ) : * (Optional ` set(number ) ` )* <a name =" var-app_installations " ></a >
814+ - [ ** ` app_installations ` ** ] ( #var-app_installations ) : * (Optional ` set(string ) ` )* <a name =" var-app_installations " ></a >
815815
816816 A set of GitHub App IDs to be installed in this repository.
817817
@@ -820,7 +820,7 @@ This is due to some terraform limitation and we will update the module once terr
820820 Example:
821821
822822 ``` hcl
823- app_installations = [25405144, 12556423]
823+ app_installations = ["05405144", " 12556423" ]
824824 ```
825825
826826### Module Configuration
Original file line number Diff line number Diff line change @@ -1057,14 +1057,14 @@ section {
10571057 title = " App Installations"
10581058
10591059 variable "app_installations" {
1060- type = set (number )
1060+ type = set (string )
10611061 default = {}
10621062 description = <<- END
10631063 A set of GitHub App IDs to be installed in this repository.
10641064 END
10651065
10661066 readme_example = <<- END
1067- app_installations = [25405144, 12556423]
1067+ app_installations = ["05405144", " 12556423" ]
10681068 END
10691069 }
10701070 }
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ variable "autolink_references" {
257257}
258258
259259variable "app_installations" {
260- type = set (number )
260+ type = set (string )
261261 description = " A list of GitHub App IDs to be installed in this repository."
262262 default = []
263263}
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ variable "archive_on_destroy" {
529529}
530530
531531variable "app_installations" {
532- type = set (number )
532+ type = set (string )
533533 description = " (Optional) A list of GitHub App IDs to be installed in this repository."
534534 default = []
535535}
You can’t perform that action at this time.
0 commit comments