Jan-Christoph Küster

Results 65 comments of Jan-Christoph Küster

Hi @unfor19, sorry for my later reply (currently busy with other projects). I think, generally, `awsls` is intended to help command line users. But a GUI would probably not hurt...

Hi @klauern, sorry, for answering so late. You could try ``` awsls "*" -a arn ``` to output the ARN attribute for all resources that have one (otherwise the output...

Hi @klauern again, I added JSON output support in [v0.10.0](https://github.com/jckuester/awsls/releases/tag/v0.10.0). This simplifies to just returning the ARN; what you can do now is `awsls -a arn --json | jq '.[]...

Hi @chris-kiick-sp, You mean all the resources types that are listed under `service name` (in **bold letters**) in [this table of the README]( https://github.com/jckuester/awsls#supported-resources) (see also screenshot below)? Btw, the...

This is a great idea. I will add it when I find time :)

Hi @Veetaha, yes, this is definitely doable (if I find some time). The list of all supported resource types is here https://github.com/jckuester/awsls/blob/master/resource/supported.go#L6, we just would need to add a subcommand...

Thanks @chris-kiick-sp for reporting this issue! I didn't expect `*r.ClusterIdentifier` to be `nil` at any time. I probably have to add a nil check here. I'll come back to you...

Hi @iainelder, I started working on the first issues that you are describing. All provider plugins (17x17=289) are launched in the beginning and lead to too many open files. I'll...

Hi @iainelder, thanks for your resource request. I should upgrade `awsls` more frequently to support new resources :) Here is PR for now: https://github.com/jckuester/awsls/pull/36/. With `go build` you can create...

Hi @iainelder, I just realised that `aws_dynamodb_kinesis_streaming_destination` has a required attribute (the [`TableName`](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeKinesisStreamingDestination.html)) and `awsls` can currently not list resources that have required attributes. Sorry! I am planning to support...