Skip to content

Commit

Permalink
fix(hadoop): Allow dot character in bootstrap_script
Browse files Browse the repository at this point in the history
  • Loading branch information
youngmn committed Apr 23, 2024
1 parent fa506e7 commit 508ffac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/service/hadoop/hadoop.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ func (r *hadoopResource) Schema(_ context.Context, req resource.SchemaRequest, r
}...),
stringvalidator.LengthAtMost(1024),
stringvalidator.RegexMatches(
regexp.MustCompile(`^[a-zA-Z]+$`),
"Composed of alphabets.",
regexp.MustCompile(`^[a-zA-Z.]+$`),
"Only English and dot characters are supported. Maximum length only up to 1024 Bytes",
),
},
},
Expand Down

0 comments on commit 508ffac

Please sign in to comment.