Honest Charley Bodkin

Results 45 comments of Honest Charley Bodkin

Just curious on your approach here: Are you referring to having different features of this starter repo be able to be turned on and off, like a create-react-app style config...

Ah, I understand. Partial roll-out seems like an interesting concept to me. Would be very curious to see how that is implemented. I recently implemented feature flags in my main...

Fwiw: I have a use case where I would like to use Apollo in a NextJS React project, but I don't want to use the hooks provided. I would like...

This doesn't yet work for: ``` name = "${kubernetes_config_map.caddy.metadata.0.name}" ``` or: ``` name = "${function(kubernetes_config_map.caddy.metadata.name)}" ```

This may also cause problems for people: ``` "${local.key_name}" = "${base64decode(module.foobar.key)}" ``` Gets replaced with: ``` local.key_name = "${base64decode(module.foobar.key)}" ```

A little better: ``` =(.*)"\$\{(([a-z0-8]|\(|\)|\.|_)+)\}" ``` ``` =$1$2 ```

Still, this won't work: ``` on_call_contacts = "${file("${path.module}/CONTACTS.md")}" ```

This is also tricky if using the equal sign in the beginning of the pattern: ``` "kubernetes.io/ingress.global-static-ip-name" : "${google_compute_global_address.static_ip.name}" ```

Thanks @paultyng. I leave it up to the maintainers to close this if they don't want to implement. Just thought some of my regex might help a future fellow-traveller.