Skip to content

Commit c1abeba

Browse files
authored
modify aws credentials text field type to password (#58)
1 parent af5c499 commit c1abeba

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

aws-replicator/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ localstack extensions install "git+https://github.com/localstack/localstack-exte
150150

151151
## Change Log
152152

153+
* `0.1.12`: Modify aws credentials text field type to password
153154
* `0.1.11`: Fix broken imports after recent upstream CloudFormation changes
154155
* `0.1.10`: Add `REPLICATOR_PROXY_DOCKER_FLAGS` option to pass custom flags to proxy Docker containers
155156
* `0.1.9`: Enhance proxy networking and add `REPLICATOR_LOCALSTACK_HOST` config option

aws-replicator/aws_replicator/server/ui/app.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ const App = () => {
9191
</TableRow>
9292
<TableRow sx={{'&:last-child td, &:last-child th': {border: 0}}}>
9393
<TableCell component="th" scope="row">AWS Credentials:</TableCell>
94-
<TableCell sx={{width: "80%"}}>
95-
<TextField value={accessKey} onChange={(e) => setAccessKey(e.target.value)} size="small" style={{width: "32%"}} placeholder="AWS_ACCESS_KEY_ID" /> {" "}
96-
<TextField value={secretKey} onChange={(e) => setSecretKey(e.target.value)} size="small" style={{width: "32%"}} placeholder="AWS_SECRET_ACCESS_KEY" /> {" "}
97-
<TextField value={sessionToken} onChange={(e) => setSessionToken(e.target.value)} size="small" style={{width: "32%"}} placeholder="AWS_SESSION_TOKEN" />
98-
Please note: AWS credentials are only passed in-memory to the LocalStack container and will <b>not</b> be persisted on disk. For security reasons, please make sure to use scoped credentials with the least set of required permissions (ideally read-only).
99-
</TableCell>
94+
<TableCell sx={{ width: "80%" }}>
95+
<TextField type="password" value={accessKey} onChange={(e) => setAccessKey(e.target.value)} size="small" style={{ width: "32%" }} placeholder="AWS_ACCESS_KEY_ID" /> {" "}
96+
<TextField type="password" value={secretKey} onChange={(e) => setSecretKey(e.target.value)} size="small" style={{ width: "32%" }} placeholder="AWS_SECRET_ACCESS_KEY" /> {" "}
97+
<TextField type="password" value={sessionToken} onChange={(e) => setSessionToken(e.target.value)} size="small" style={{ width: "32%" }} placeholder="AWS_SESSION_TOKEN" />
98+
Please note: AWS credentials are only passed in-memory to the LocalStack container and will <b>not</b> be persisted on disk. For security reasons, please make sure to use scoped credentials with the least set of required permissions (ideally read-only).
99+
</TableCell>
100100
</TableRow>
101101
<TableRow sx={{'&:last-child td, &:last-child th': {border: 0}}}>
102102
<TableCell component="th" scope="row">

aws-replicator/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = localstack-extension-aws-replicator
3-
version = 0.1.11
3+
version = 0.1.12
44
summary = LocalStack Extension: AWS replicator
55
description = Replicate AWS resources into your LocalStack instance
66
long_description = file: README.md

0 commit comments

Comments
 (0)