Skip to content

Commit b8b751f

Browse files
committed
Fix Description of repository_image_tag_mutability to include WITH_EXCLUSION options
1 parent 1fdd0dc commit b8b751f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/repository-template/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ variable "image_tag_mutability_exclusion_filter" {
6060
}
6161

6262
variable "image_tag_mutability" {
63-
description = "The tag mutability setting for any created repositories. Must be one of: `MUTABLE` or `IMMUTABLE`. Defaults to `IMMUTABLE`"
63+
description = "The tag mutability setting for any created repositories. Must be one of: `MUTABLE`, `MUTABLE_WITH_EXCLUSION`, `IMMUTABLE`, or `IMMUTABLE_WITH_EXCLUSION`. Defaults to `IMMUTABLE`"
6464
type = string
6565
default = "IMMUTABLE"
6666
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ variable "repository_name" {
3939
}
4040

4141
variable "repository_image_tag_mutability" {
42-
description = "The tag mutability setting for the repository. Must be one of: `MUTABLE` or `IMMUTABLE`. Defaults to `IMMUTABLE`"
42+
description = "The tag mutability setting for the repository. Must be one of: `MUTABLE`, `MUTABLE_WITH_EXCLUSION`, `IMMUTABLE`, or `IMMUTABLE_WITH_EXCLUSION`. Defaults to `IMMUTABLE`"
4343
type = string
4444
default = "IMMUTABLE"
4545
}

0 commit comments

Comments
 (0)