Skip to content

Commit

Permalink
fix(Config Schema): Fix provider.tags schema (#8314)
Browse files Browse the repository at this point in the history
  • Loading branch information
dashmug committed Oct 2, 2020
1 parent 5851bca commit fc34140
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/plugins/aws/provider/awsProvider.js
Expand Up @@ -406,9 +406,8 @@ class AwsProvider {
awsResourceTags: {
type: 'object',
patternProperties: {
'^(?!aws:)[\\w./=+-]{1,128}$': {
'^(?!aws:)[\\w./=+:-]{1,128}$': {
type: 'string',
pattern: '^(?!aws:)[\\w./=+-]*$',
maxLength: 256,
},
},
Expand Down

0 comments on commit fc34140

Please sign in to comment.