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 command option name #260

Merged
merged 3 commits into from
Jan 13, 2023
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ The `Architectures` array can be specified either by:
1. Directly with the path `AWS::Serverless::Function`
2. Within the [AWS SAM Template syntax `Globals`](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-specification-template-anatomy-globals.html)

Example of directly with the path `AWS::Serverless::Funaction` in a `serverless.template`:
Example of directly with the path `AWS::Serverless::Function` in a `serverless.template`:

```
...
Expand Down
4 changes: 2 additions & 2 deletions src/Amazon.Lambda.Tools/LambdaDefinedCommandOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public static class LambdaDefinedCommandOptions
public static readonly CommandOption ARGUMENT_FUNCTION_SECURITY_GROUPS =
new CommandOption
{
Name = "Subnets",
Name = "Security Groups",
ShortSwitch = "-fsec",
Switch = "--function-security-groups",
ValueType = CommandOption.CommandOptionValueType.CommaDelimitedList,
Expand Down Expand Up @@ -478,4 +478,4 @@ public static class LambdaDefinedCommandOptions
Description = $"Path to the directory to mount to the build container. Otherwise, look upward for a solution folder."
};
}
}
}