File tree 5 files changed +14
-7
lines changed
5 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.16.2]
11
+
12
+ ### Fixed
13
+
14
+ - ` var.app_installations ` should be a of type ` set(string) ` instead of ` set(number) `
15
+
10
16
## [ 0.16.1]
11
17
12
18
### Added
@@ -374,7 +380,8 @@ Please review plans and report regressions and issues asap so we can improve doc
374
380
- This is the initial release of our GitHub Repository module with support for
375
381
creating and managing GitHub Repositories for Organizations.
376
382
377
- [ unreleased ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.1...HEAD
383
+ [ unreleased ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.2...HEAD
384
+ [ 0.16.2 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.1...v0.16.2
378
385
[ 0.16.1 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.0...v0.16.1
379
386
[ 0.16.0 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.15.0...v0.16.0
380
387
[ 0.15.0 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.14.0...v0.15.0
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
811
811
812
812
#### App Installations
813
813
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 >
815
815
816
816
A set of GitHub App IDs to be installed in this repository.
817
817
@@ -820,7 +820,7 @@ This is due to some terraform limitation and we will update the module once terr
820
820
Example:
821
821
822
822
``` hcl
823
- app_installations = [25405144, 12556423]
823
+ app_installations = ["05405144", " 12556423" ]
824
824
```
825
825
826
826
### Module Configuration
Original file line number Diff line number Diff line change @@ -1057,14 +1057,14 @@ section {
1057
1057
title = " App Installations"
1058
1058
1059
1059
variable "app_installations" {
1060
- type = set (number )
1060
+ type = set (string )
1061
1061
default = {}
1062
1062
description = <<- END
1063
1063
A set of GitHub App IDs to be installed in this repository.
1064
1064
END
1065
1065
1066
1066
readme_example = <<- END
1067
- app_installations = [25405144, 12556423]
1067
+ app_installations = ["05405144", " 12556423" ]
1068
1068
END
1069
1069
}
1070
1070
}
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ variable "autolink_references" {
257
257
}
258
258
259
259
variable "app_installations" {
260
- type = set (number )
260
+ type = set (string )
261
261
description = " A list of GitHub App IDs to be installed in this repository."
262
262
default = []
263
263
}
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ variable "archive_on_destroy" {
529
529
}
530
530
531
531
variable "app_installations" {
532
- type = set (number )
532
+ type = set (string )
533
533
description = " (Optional) A list of GitHub App IDs to be installed in this repository."
534
534
default = []
535
535
}
You can’t perform that action at this time.
0 commit comments