Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
updated AllowedPattern
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul188 committed Sep 4, 2024
1 parent d104340 commit 9e09d0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/control-tower-customization.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ Parameters:
NewRelicAccessKey:
Type: String
NoEcho: true
AllowedPattern: '^([A-Z0-9-]){40}$'
ConstraintDescription: New Relic User key is 32 characters long, and contains only numbers and letters
AllowedPattern: '^[A-Za-z0-9]{40}$'
ConstraintDescription: New Relic User key is 40 characters long, and contains only numbers and letters
Description: New Relic NerdGraph User key. See https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/#user-api-key
NerdGraphEndpoint:
Type: String
Expand Down
4 changes: 2 additions & 2 deletions templates/newrelic-hub-cfct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Parameters:
NewRelicAccessKey:
Type: String
NoEcho: true
AllowedPattern: '^([A-Z0-9-]){40}$'
ConstraintDescription: New Relic User key is 32 characters long, and contains only numbers and letters
AllowedPattern: '^[A-Za-z0-9]{40}$'
ConstraintDescription: New Relic User key is 40 characters long, and contains only numbers and letters
Description: New Relic NerdGraph User key. See https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/#user-api-key
NerdGraphEndpoint:
Type: String
Expand Down

0 comments on commit 9e09d0c

Please sign in to comment.