Results 26 comments of Raymond Butcher

Hi. Yes Jinjaform created new files and merged the contents from files in parent directories. It doesn’t work here with symlinks, as you’ve seen, but you can make it work....

Current idea: Collections API uses a decorator to create a Collection object. Creating a collection is the same as any other Pretf terraform function, but you use a decorator on...

To avoid complicating the implementation, nothing will be done to alter resource names to ensure uniqueness. Instead, creators of collections will need to name resources with a variable, then the...

I've started implementing that idea. * [x] basic collections support * [x] nested collections * [x] ability to yield and yield from collections * [x] documentation and examples * [...

Thanks! The checklist above is accurate, there’s just no tutorial. It’s all released and useable. https://pretf.readthedocs.io/en/latest/api/collections/ https://github.com/raymondbutcher/pretf/blob/master/examples/aws/s3.tf.py https://github.com/raymondbutcher/pretf/blob/master/tests/test_collections.py

Thanks! Yes, this is fairly tightly coupled with files and workflows, I think mainly to support Terraform variables. I never really thought about using this as an API before. Firstly,...

No problem! I get that we're at the mercy of different rendering engines and websites, but I think it is worth trying to get GitHub to render it nicely. It...

This is tricky. If `.jinaformrc` has `RUN ln -fs "${JINJAFORM_PROJECT_ROOT}/modules" "${JINJAFORM_WORKSPACE}/modules"` then modules will be going through a symlink that only exists *after* the workspace has been created. So we...

I found 2 ways to improve unzip speeds. First, exclude the directory from Windows Defender. It makes things really slow. I'm extracting a 50mb file and doing this changed it...

I did this because I couldn't get environment variables to work. I've figured out why that is though. In [boto](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html#configuring-credentials) the credentials priority order is: 1. Passing credentials as parameters...