<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cisco ACI with Terraform: &amp;quot;This has been created from Orchest in Controllers</title>
    <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4897349#M3165</link>
    <description>&lt;P&gt;Even if you provide an empty string as the annotation argument you see the icon? If yes, try to set the annotaion argument as "dummy" or some other string. Not sure if it works, but it's worth a try.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Aug 2023 06:29:34 GMT</pubDate>
    <dc:creator>Marcel Zehnder</dc:creator>
    <dc:date>2023-08-02T06:29:34Z</dc:date>
    <item>
      <title>Cisco ACI with Terraform: "This has been created from Orchestrator"</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834526#M168</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Is it possible to prevent the message "This has been created from Orchestrator", and the "Terraform" icon from being displayed in ACI when configuring objects using Terraform? I have a scenario where I want to initially create most objects using Terraform but turn the deployment over to an end customer who will be using the UI to configure going forward.&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 18:37:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834526#M168</guid>
      <dc:creator>ahlgrenjm</dc:creator>
      <dc:date>2023-05-12T18:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834532#M169</link>
      <description>Yes, you need to clear the annotation.  TF sets it to "orchestrator:terraform" like:&lt;BR /&gt;&lt;BR /&gt;{&lt;BR /&gt;    "totalCount": "1",&lt;BR /&gt;    "imdata": [{&lt;BR /&gt;            "fvAp": {&lt;BR /&gt;                "attributes": {&lt;BR /&gt;                    "annotation": "orchestrator:terraform",&lt;BR /&gt;                    "descr": "",&lt;BR /&gt;                    "dn": "uni/tn-L2_Transit/ap-SONOFI",&lt;BR /&gt;                    "name": "DEMO",&lt;BR /&gt;                    "nameAlias": "",&lt;BR /&gt;                    "ownerKey": "",&lt;BR /&gt;                    "ownerTag": "",&lt;BR /&gt;                    "prio": "unspecified",&lt;BR /&gt;                    "userdom": ":all:common:"&lt;BR /&gt;                }&lt;BR /&gt;            }&lt;BR /&gt;        }&lt;BR /&gt;    ]&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;So once you delete that annotation, the icon and message go away.  I have not tried just manually setting the annotation to Null in TF but that should work as well.&lt;BR /&gt;</description>
      <pubDate>Fri, 12 May 2023 18:58:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834532#M169</guid>
      <dc:creator>tmagill@convergeone.com</dc:creator>
      <dc:date>2023-05-12T18:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834541#M170</link>
      <description>&lt;P&gt;Thanks. I'm new to TF but I don't see that annotation in my TF files. Is it added automatically by TF?&amp;nbsp; I'll keep looking around as I may have missed it.&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 19:11:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834541#M170</guid>
      <dc:creator>ahlgrenjm</dc:creator>
      <dc:date>2023-05-12T19:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834691#M171</link>
      <description>&lt;P&gt;You can set the annotation as an argument in the resources (just set it to ""). Here is an example for the tenant resource:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;resource "aci_tenant" "example" {
  name        = "demo_tenant"
  description = "from terraform"
  annotation  = ""
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 May 2023 12:59:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4834691#M171</guid>
      <dc:creator>Marcel Zehnder</dc:creator>
      <dc:date>2023-05-13T12:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4835574#M172</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/293649"&gt;@Marcel Zehnder&lt;/a&gt; and &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/411505"&gt;tmagill@convergeone.com&lt;/a&gt; !&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2023 14:08:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4835574#M172</guid>
      <dc:creator>ahlgrenjm</dc:creator>
      <dc:date>2023-05-15T14:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4896939#M3164</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;It doesn't work in my environment.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Terraform v1.5.4, Provider aci v2.9.0 and Application Policy Infrastructure Controller Version: 5.2(4e)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 12:54:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4896939#M3164</guid>
      <dc:creator>dino.dan</dc:creator>
      <dc:date>2023-08-01T12:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4897349#M3165</link>
      <description>&lt;P&gt;Even if you provide an empty string as the annotation argument you see the icon? If yes, try to set the annotaion argument as "dummy" or some other string. Not sure if it works, but it's worth a try.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 06:29:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4897349#M3165</guid>
      <dc:creator>Marcel Zehnder</dc:creator>
      <dc:date>2023-08-02T06:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco ACI with Terraform: "This has been created from Orchest</title>
      <link>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4897549#M3166</link>
      <description>&lt;P&gt;I've set annotation argument as "dummy" and I don't see the icon but if you save the object in xml I see&amp;nbsp; annotation="dummy". If I change iafter apply&amp;nbsp; annotation="" and make&amp;nbsp; &amp;nbsp; terraform plan the messages is&amp;nbsp;&lt;/P&gt;&lt;P&gt;No changes. Your infrastructure matches the configuration.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 12:49:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/cisco-aci-with-terraform-quot-this-has-been-created-from/m-p/4897549#M3166</guid>
      <dc:creator>dino.dan</dc:creator>
      <dc:date>2023-08-02T12:49:09Z</dc:date>
    </item>
  </channel>
</rss>

