Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a minor LR typo #3499

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/actions/spelling/line_forbidden.patterns
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@
# s.b. CodeStar
\bCodestar\b

# s.b. AWS Config
\bAWS config\b

# s.b. Copilot
\bCoPilot\b

Expand Down
8 changes: 4 additions & 4 deletions providers/aws/resources/aws.lr
Original file line number Diff line number Diff line change
Expand Up @@ -2509,7 +2509,7 @@ private aws.ec2.securitygroup.ippermission @defaults("id toPort fromPort ipProto
ipv6Ranges []string
}

// AWS config
// AWS Config
aws.config {
// List of configuration recorders for each region in the account
recorders() []aws.config.recorder
Expand All @@ -2519,7 +2519,7 @@ aws.config {
deliveryChannels() []aws.config.deliverychannel
}

// AWS config rule
// AWS Config rule
private aws.config.rule @defaults("name id region state") {
// ARN for the config rule
arn string
Expand All @@ -2537,7 +2537,7 @@ private aws.config.rule @defaults("name id region state") {
region string
}

// AWS config recorder
// AWS Config recorder
private aws.config.recorder @defaults("name region") {
// Name of the recorder
name string
Expand All @@ -2557,7 +2557,7 @@ private aws.config.recorder @defaults("name region") {
resourceTypes []string
}

// AWS config delivery channel
// AWS Config delivery channel
private aws.config.deliverychannel @defaults("name region") {
// Name of the delivery channel
name string
Expand Down
Loading