You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above line is used during the import process for profile files (either exported by AWS Signer, or from the ~/.aws/config file locally). The former supports profile names with spaces in them. However, importing these files breaks, with AWS Signer detecting no profiles in the file:
[DEBUG] Import Profile Button Clicked.
[DEBUG] Selected path from file dialog: /fake_path/aws_signer.ini
[INFO] Imported 0 profile(s) from file: /fake_path/aws_signer.ini
Here's an example export file from AWS Signer that causes this:
It may be more appropriate to use an INI library for this - the ~/.aws/config file is INI-formatted, as mentioned here if that's what AWS Signer is shooting for.
The text was updated successfully, but these errors were encountered:
AWSSigner/src/main/java/com/netspi/awssigner/model/persistence/FileProfileImporter.java
Line 25 in 204a457
The above line is used during the import process for profile files (either exported by AWS Signer, or from the
~/.aws/config
file locally). The former supports profile names with spaces in them. However, importing these files breaks, with AWS Signer detecting no profiles in the file:Here's an example export file from AWS Signer that causes this:
It may be more appropriate to use an INI library for this - the
~/.aws/config
file is INI-formatted, as mentioned here if that's what AWS Signer is shooting for.The text was updated successfully, but these errors were encountered: