Christian Bongiorno

Results 130 comments of Christian Bongiorno

looking at the [docs](https://jfrog.com/help/r/jfrog-rest-apis/get-repositories), actually, only 1 single call is needed: ``` curl -snLf http://myart.comany.com/artifactory/api/repositories | jq -re '.[] | "\(.key) \(.type) \(.packageType)"' libs-releases-local LOCAL Generic libs-snapshots-local LOCAL Maven ```...

You know, I actually thought about this: technically you don't need terra form import: you can just interrogate all the resources yourself and generate the proper HCl

This generates the proper syntax: ```shell printf ' provider "artifactory" { } ' while read -r key type package; do printf ' import { to = artifactory_%s_%s.%s id = %s...

I have... repeatedly... :) Let's sync up this morning and discuss an approach for this thing

I think what is/was being proposed is that you can generate the ```hcl import { } ``` block, and then just run `terraform plan --output-hcl-to` or whatever, and it will...

well, it can be done the way your suggest, and wouldn't be impossible. If you still wanna do it that way, you can throttle your calls easily enough: ```shell curl...

@ssyeds - This pr is almost merged in. I'll be curious to get your input

The vernacular should change from `SetPrerequestHook` to `AddPreRequestHook`. If you intend to stick with this approach, then offer a `CompositePreRequestHook` that take a slice of hooks and returns a singular...

Looking forward to it

My rant: Go insists that maps don't/can't have order. But that's an implementation issue based on the fact that these are Hash based maps instead of Tree based maps (which...