From f8adf527d9cb39d2d6220ee33614738175d980d1 Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Tue, 2 Apr 2024 10:45:48 +0530 Subject: [PATCH 1/2] modify aws credentials text field type to password --- aws-replicator/aws_replicator/server/ui/app.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/aws-replicator/aws_replicator/server/ui/app.js b/aws-replicator/aws_replicator/server/ui/app.js index 1537d22..e4da2d5 100644 --- a/aws-replicator/aws_replicator/server/ui/app.js +++ b/aws-replicator/aws_replicator/server/ui/app.js @@ -91,12 +91,12 @@ const App = () => { AWS Credentials: - - setAccessKey(e.target.value)} size="small" style={{width: "32%"}} placeholder="AWS_ACCESS_KEY_ID" /> {" "} - setSecretKey(e.target.value)} size="small" style={{width: "32%"}} placeholder="AWS_SECRET_ACCESS_KEY" /> {" "} - setSessionToken(e.target.value)} size="small" style={{width: "32%"}} placeholder="AWS_SESSION_TOKEN" /> - Please note: AWS credentials are only passed in-memory to the LocalStack container and will not be persisted on disk. For security reasons, please make sure to use scoped credentials with the least set of required permissions (ideally read-only). - + + setAccessKey(e.target.value)} size="small" style={{ width: "32%" }} placeholder="AWS_ACCESS_KEY_ID" /> {" "} + setSecretKey(e.target.value)} size="small" style={{ width: "32%" }} placeholder="AWS_SECRET_ACCESS_KEY" /> {" "} + setSessionToken(e.target.value)} size="small" style={{ width: "32%" }} placeholder="AWS_SESSION_TOKEN" /> + Please note: AWS credentials are only passed in-memory to the LocalStack container and will not be persisted on disk. For security reasons, please make sure to use scoped credentials with the least set of required permissions (ideally read-only). + From 80d4f95124ab02aa336c89af3aef41d6e97deb1a Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Wed, 3 Apr 2024 18:29:48 +0530 Subject: [PATCH 2/2] bump version --- aws-replicator/README.md | 1 + aws-replicator/setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/aws-replicator/README.md b/aws-replicator/README.md index 6a7cdca..25411f7 100644 --- a/aws-replicator/README.md +++ b/aws-replicator/README.md @@ -150,6 +150,7 @@ localstack extensions install "git+https://github.com/localstack/localstack-exte ## Change Log +* `0.1.12`: Modify aws credentials text field type to password * `0.1.11`: Fix broken imports after recent upstream CloudFormation changes * `0.1.10`: Add `REPLICATOR_PROXY_DOCKER_FLAGS` option to pass custom flags to proxy Docker containers * `0.1.9`: Enhance proxy networking and add `REPLICATOR_LOCALSTACK_HOST` config option diff --git a/aws-replicator/setup.cfg b/aws-replicator/setup.cfg index 73c1fc5..4d8e4b1 100644 --- a/aws-replicator/setup.cfg +++ b/aws-replicator/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-extension-aws-replicator -version = 0.1.11 +version = 0.1.12 summary = LocalStack Extension: AWS replicator description = Replicate AWS resources into your LocalStack instance long_description = file: README.md