Skip to content

Commit 2743d0d

Browse files
refs platform/board#3977: update cleanup policy conditions (#25)
1 parent 6b570ed commit 2743d0d

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ Following semver, any non backwards compatible feature implies that the next rel
2020

2121
## [Unreleased]
2222

23+
## [0.11.1] - 2025-11-07
24+
25+
[Compare with previous version](https://github.com/sparkfabrik/terraform-google-gcp-artifact-registry/compare/0.11.0...0.11.1)
26+
27+
### Changed
28+
29+
- FIX: update cleanup policy conditions for tag and version prefixes
30+
2331
## [0.11.0] - 2025-10-27
2432

2533
[Compare with previous version](https://github.com/sparkfabrik/terraform-google-gcp-artifact-registry/compare/0.10.2...0.11.0)

main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ locals {
4242
action = "KEEP"
4343
condition = {
4444
tag_state = "TAGGED"
45-
tag_prefixes = []
46-
version_name_prefixes = [for i in range(0, 100) : "${i}."]
45+
tag_prefixes = [for i in range(0, 100) : "${i}."]
46+
version_name_prefixes = []
4747
package_name_prefixes = []
4848
older_than = null
4949
newer_than = null
@@ -54,8 +54,8 @@ locals {
5454
action = "KEEP"
5555
condition = {
5656
tag_state = "TAGGED"
57-
tag_prefixes = []
58-
version_name_prefixes = [for i in range(0, 100) : "${i}-"]
57+
tag_prefixes = [for i in range(0, 100) : "${i}-"]
58+
version_name_prefixes = []
5959
package_name_prefixes = []
6060
older_than = null
6161
newer_than = null

0 commit comments

Comments
 (0)