File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" >
Original file line number Diff line number Diff line change 11[metadata]
22name = localstack-extension-aws-replicator
3- version = 0.1.11
3+ version = 0.1.12
44summary = LocalStack Extension: AWS replicator
55description = Replicate AWS resources into your LocalStack instance
66long_description = file: README.md
You can’t perform that action at this time.
0 commit comments