func SearchCompositeAction()

in src/lib.go [103:111]


func SearchCompositeAction(changeResources ChangeResources, actionType ChangeAction) []tfjson.ResourceChange {
	// 特定の複合Actionがあるかどうか
	actions := GetCompositeActions(changeResources)

	if _, ok := actions[actionType]; ok {
		return actions[actionType]
	}
	return nil
}