File tree Expand file tree Collapse file tree 3 files changed +2
-64
lines changed
Expand file tree Collapse file tree 3 files changed +2
-64
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -73,3 +73,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7373- how sync handles pending invitations (now it does not ignore them)
7474- removed references to other resources from for_each expressions
7575- downgraded terraform to 1.2.9 to fix an import bug affecting for_each expressions
76+ - refactored pages build_type assignment to trim whitespace
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ resource "github_repository" "this" {
7474 dynamic "pages" {
7575 for_each = try (each. value . pages , [])
7676 content {
77- build_type = try (pages. value [" build_type" ], null )
77+ build_type = trimspace ( try (pages. value [" build_type" ], " " )) != " " ? pages . value [ " build_type " ] : null
7878 cname = try (pages. value [" cname" ], null )
7979 dynamic "source" {
8080 for_each = pages. value [" source" ]
You can’t perform that action at this time.
0 commit comments