Skip to content

Commit

Permalink
fix collection name
Browse files Browse the repository at this point in the history
  • Loading branch information
tbauriedel committed Jan 15, 2024
1 parent 384c0b0 commit 1d9c67f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/organize_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# pylint: disable=missing-module-docstring

from ansible.module_utils.basic import AnsibleModule
from ansible_collections.tbauriedel.influxdb.plugins.module_utils.utils import (Influx2Api) # pylint: disable=import-error
from ansible_collections.tbauriedel.influxdb2.plugins.module_utils.utils import (Influx2Api) # pylint: disable=import-error

def run_module():
'''
Expand Down
2 changes: 1 addition & 1 deletion roles/influxdb2/tasks/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# TODO add handling for orgs, buckets, etc.
- name: Organize buckets
tbauriedel.influxdb.organize_bucket:
tbauriedel.influxdb2.organize_bucket:
name: "{{ item.name }}"
state: "{{ item.state }}"
org: "{{ item.org }}"
Expand Down

0 comments on commit 1d9c67f

Please sign in to comment.