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/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). + 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