Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add modules for Endpoint Policy Tags (fvEpIp,fvEpMacTag) (DCNE-287) #714

Open
adealdag opened this issue Jan 14, 2025 · 0 comments
Open
Labels
enhancement New feature or request jira-sync Sync this issue to Jira

Comments

@adealdag
Copy link

adealdag commented Jan 14, 2025

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

  • Add modules to support Endpoint Policy Tags (fvEpIp,fvEpMacTag)

New or Affected Module(s):

  • fvEpIp
  • fvEpMacTag

APIC version and APIC Platform

  • on-prem, V5.2 and higher

References

  • #0000

Example with aci_rest

    - name: Update Endpoint Policy Tags
      cisco.aci.aci_rest:
        method: post
        path: /api/mo/uni.json
        content:
          {
            "fvEpMacTag":
              {
                "attributes":
                  {
                    "dn": "uni/tn-{{ tenant }}/eptags/epmactag-{{ mac_addr }}-[{{ bd_name }}]",
                    "mac": "{{ mac_addr }}",
                    "bdName": "{{ bd_name }}",
                  },
              },
          }

    - name: Add tags
      cisco.aci.aci_tag:
        dn: "uni/tn-{{ tenant }}/eptags/epmactag-{{ mac_addr }}-[{{ bd_name }}]"
        tag_key: "{{ item.key }}"
        tag_value: "{{ item.value }}"
        tag_type: tag
        state: present
      loop: "{{ policy_tags }}"
@adealdag adealdag added the enhancement New feature or request label Jan 14, 2025
@akinross akinross added the jira-sync Sync this issue to Jira label Jan 15, 2025
@github-actions github-actions bot changed the title Add modules for Endpoint Policy Tags (fvEpIp,fvEpMacTag,fvEpVmmMacTagDef) Add modules for Endpoint Policy Tags (fvEpIp,fvEpMacTag,fvEpVmmMacTagDef) (DCNE-287) Jan 15, 2025
@adealdag adealdag changed the title Add modules for Endpoint Policy Tags (fvEpIp,fvEpMacTag,fvEpVmmMacTagDef) (DCNE-287) Add modules for Endpoint Policy Tags (fvEpIp,fvEpMacTag) (DCNE-287) Jan 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request jira-sync Sync this issue to Jira
Projects
None yet
Development

No branches or pull requests

2 participants