We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32bdae6 commit df8953bCopy full SHA for df8953b
packages/aws-library/src/aws_library/ec2/models.py
@@ -72,7 +72,7 @@ class AWSTagKey(ConstrainedStr):
72
class AWSTagValue(ConstrainedStr):
73
# see [https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#tag-restrictions]
74
# quotes []{} were added as it allows to json encode. it seems to be accepted as a value
75
- regex = re.compile(r"^[a-zA-Z0-9\s\+\-=\._:/@\"\'\[\]\{\}]{0,256}$")
+ regex = re.compile(r"^[a-zA-Z0-9\s\+\-=\.,_:/@\"\'\[\]\{\}]{0,256}$")
76
77
78
EC2Tags: TypeAlias = dict[AWSTagKey, AWSTagValue]
0 commit comments