Skip to content

Commit

Permalink
doc: update feature docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Jun 19, 2024
1 parent 164f2b1 commit f2a7a91
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/localstack-cli/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

# LOCALSTACK CLI (localstack-cli)
# LocalStack CLI (localstack-cli)

Installs the Localstack CLI along with needed dependencies and popular "local" tools.

## Example Usage

```json
"features": {
"ghcr.io/devcontainers/features/localstack-cli:0": {}
"ghcr.io/localstack/devcontainer-feature/localstack-cli:0": {}
}
```

Expand All @@ -17,10 +17,10 @@ Installs the Localstack CLI along with needed dependencies and popular "local" t
|-----|-----|-----|-----|
| version | Select or enter a Localstack CLI version. | string | latest |
| awslocal | Install awscli-local, a thin wrapper of AWS CLI for LocalStack. | boolean | false |
| tflocal | Install terraform-local, a thin wrapper of Terraform for LocalStack. | boolean | false |
| cdklocal | Install aws-cdk-local, a thin wrapper of AWS CDK for LocalStack. | boolean | false |
| samlocal | Install aws-sam-cli-local, a thin wrapper of AWS SAM CLI for LocalStack. | boolean | false |
| pulumilocal | Install pulumi-local, a thin wrapper of Pulumi for LocalStack. | boolean | false |
| samlocal | Install aws-sam-cli-local, a thin wrapper of AWS SAM CLI for LocalStack. | boolean | false |
| tflocal | Install terraform-local, a thin wrapper of Terraform for LocalStack. | boolean | false |
| installUsingPython | Install LocalStack CLI using Python instead of pipx | boolean | false |

Available versions of the Localstack CLI can be found here: https://pypi.org/project/localstack/.
Expand Down
16 changes: 8 additions & 8 deletions src/localstack-cli/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"version": {
"type": "string",
"proposals": [
"latest",
"none",
"",
"none",
"lts",
"latest",
"stable",
"3.5.0",
"3.4.0",
Expand All @@ -29,25 +29,25 @@
"default": false,
"description": "Install awscli-local, a thin wrapper of AWS CLI for LocalStack."
},
"tflocal": {
"cdklocal": {
"type": "boolean",
"default": false,
"description": "Install terraform-local, a thin wrapper of Terraform for LocalStack."
"description": "Install aws-cdk-local, a thin wrapper of AWS CDK for LocalStack."
},
"cdklocal": {
"pulumilocal": {
"type": "boolean",
"default": false,
"description": "Install aws-cdk-local, a thin wrapper of AWS CDK for LocalStack."
"description": "Install pulumi-local, a thin wrapper of Pulumi for LocalStack."
},
"samlocal": {
"type": "boolean",
"default": false,
"description": "Install aws-sam-cli-local, a thin wrapper of AWS SAM CLI for LocalStack."
},
"pulumilocal": {
"tflocal": {
"type": "boolean",
"default": false,
"description": "Install pulumi-local, a thin wrapper of Pulumi for LocalStack."
"description": "Install terraform-local, a thin wrapper of Terraform for LocalStack."
},
"installUsingPython": {
"type": "boolean",
Expand Down

0 comments on commit f2a7a91

Please sign in to comment.