Marcin Rabenda

Results 74 comments of Marcin Rabenda

I need also to achieve this - seems that `cloudformation.Split(",", cloudformation.Ref("SubnetIds")` is incorrect from the perspective of cloudformation. Second side is that goformation is expecting `[]string` probably in this place...

@ndeloof I solved that problem - please take a look on #309 and then use just `cloudformation.Join(",", cloudformation.Ref("SubnetIds"))`

@rubenfonseca what do you think about this?

@rubenfonseca tbh I am not sure how to write `if` which do not adds `*` for interface{}. Is there an option that you will support? Even if you can write...

@rubenfonseca any chance that you will take a look on this? (Previous implementation of If with ``` switch v := ifEqual.(type) { ``` was written by my team member as...

@rubenfonseca - unfortunately it won't be simple. I have my own fork of this repo where for some resources where I need to use parameter and then Intrinsics functions I...

Hi @rubenfonseca - any chance that you will take a look on this?

Each resource has property `AWSCloudFormationCondition` fell free to use it

@rubenfonseca I had also problems in past with `cloudformation.Select(2,` and is required `cloudformation.Select("2",` what do you think about change of ``` // Select returns a single object from a list...