Michael van Tellingen

Results 108 comments of Michael van Tellingen

Agreed we need to fix this. As mentioned we need to support the following ```hcl resource "commercetools_state_transitions" "transition_1" { from = commercetools_state.state_1.id to = [ commercetools_state.state_2.id ] } resource "commercetools_state_transitions"...

The transition is set to the state defined in the `from` attribute. I've added a warning when multiple state_transitions are defined for the same `from` since we can only define...

Yes you can define multiple transitions per state, but only all at once via the `setTransitions` action. So there is no `addTransition` or `removeTransition`. When managing tax rates, or shipping...

Yeah would appreciate that. You can reference this issue

Will be fixed in 1.5.0

@emmenko sorry for getting back to this so late. I'm working on extracting your code and moving it to the commercetools-go-sdk project. See https://github.com/labd/commercetools-go-sdk/pull/52 However i'm running into a permission...

See https://www.terraform.io/plugin/framework/migrating (muxing approach)

I completely forgot that this PR existed when I implemented the new state transition resource. And somehow I implemented it almost exactly like this PR so I must have seen...

Looks good! Two small changes to simplify the code. Note that i'm more and more doubting if the added nesting of resources makes it better. So instead of ```hcl shipping_rate_price_tier...

I was in the process of rebasing this but stumbled upon a question. We now have ```hcl shipping_rate_price_tier { type = "CartScore" score = 10 price { cent_amount = 5000...