<?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: Is there a way to send a credential from credential vault to extension configuration in Extensions</title>
    <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/266134#M5726</link>
    <description>&lt;P&gt;It is only possible if the extension developer has added the above code, in which case you get a dropdown with your credential vault items.&lt;/P&gt;</description>
    <pubDate>Tue, 24 Dec 2024 01:11:31 GMT</pubDate>
    <dc:creator>Mike_L</dc:creator>
    <dc:date>2024-12-24T01:11:31Z</dc:date>
    <item>
      <title>Send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242122#M4276</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Title is pretty self-explanatory. I am looking for a way to use the credential vault to fill in a configuration entry so that we can prevent a password leak or something like that. Right now the text entries don't seem to provide a way to reference an item in the credential vault, unless I am wrong. If there isn't a way to do this, is this something you would consider adding in the future?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Benji_Dynatrace&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 14:18:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242122#M4276</guid>
      <dc:creator>Benji_Dynatrace</dc:creator>
      <dc:date>2024-05-10T14:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242123#M4277</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/70814"&gt;@Benji_Dynatrace&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Have not used this yet, but seems to be available, according to the following two threads:&lt;BR /&gt;&lt;A href="https://community.dynatrace.com/t5/Product-ideas/RFE-Extend-the-use-of-Credential-Vault-to-Dynatrace-Hub/idi-p/195571" target="_blank"&gt;https://community.dynatrace.com/t5/Product-ideas/RFE-Extend-the-use-of-Credential-Vault-to-Dynatrace-Hub/idi-p/195571&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.dynatrace.com/t5/Extensions/Vaults-eg-Hashicorp-CyberArk-in-Dynatrace-extensions/m-p/202878" target="_blank"&gt;https://community.dynatrace.com/t5/Extensions/Vaults-eg-Hashicorp-CyberArk-in-Dynatrace-extensions/m-p/202878&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 20:26:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242123#M4277</guid>
      <dc:creator>AntonioSousa</dc:creator>
      <dc:date>2024-04-08T20:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242163#M4278</link>
      <description>&lt;P&gt;It's up to each extension to implement such a feature. If you're missing it for a specific one which is available on the Dynatrace hub, please raise a product idea on the community forum.&lt;/P&gt;
&lt;P&gt;When creating an extension in extension framework 2.0 it's possible to add credential vault support to the activation schema using this format:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;"useCredentialVault": {
	"displayName": "Use credential vault",
	"type": "boolean",
	"nullable": false,
	"default": true,
	"maxObjects": 1
},
"credentialVaultId": {
	"displayName": "Select Vault credentials",
	"nullable": true,
	"type": "text",
	"subType": "credential",
	"referencedType": "USERNAME_PASSWORD",
	"maxObjects": 1,
	"precondition": {
		"type": "EQUALS",
		"property": "useCredentialVault",
		"expectedValue": true
	},
	"constraints": [
		{
			"type": "NOT_BLANK"
		}
	]
},
"username": {
	"displayName": "User Name",
	"type": "text",
	"nullable": false,
	"default": "",
	"precondition": {
		"type": "EQUALS",
		"property": "useCredentialVault",
		"expectedValue": false
	},
	"constraints": [
		{
			"type": "LENGTH",
			"minLength": 1,
			"maxLength": 500
		}
	],
	"maxItems": 1
},
"password": {
	"displayName": "Password",
	"type": "secret",
	"nullable": false,
	"default": "",
	"precondition": {
		"type": "EQUALS",
		"property": "useCredentialVault",
		"expectedValue": false
	},
	"constraints": [
		{
			"type": "LENGTH",
			"minLength": 1,
			"maxLength": 500
		}
	],
	"maxItems": 1
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 09:10:52 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242163#M4278</guid>
      <dc:creator>Mike_L</dc:creator>
      <dc:date>2024-04-09T09:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242189#M4280</link>
      <description>&lt;P&gt;That's exactly it, thank you so much!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 12:16:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/242189#M4280</guid>
      <dc:creator>Benji_Dynatrace</dc:creator>
      <dc:date>2024-04-09T12:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/266106#M5725</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/11520"&gt;@Mike_L&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/70814"&gt;@Benji_Dynatrace&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above answers is oriented towards extensions developers,&amp;nbsp; not users.&amp;nbsp; What if I want to use an extension published on the extensions hub, with Vault based secrets in the configuration ?&amp;nbsp; it seems there is not type-ahead or suggest feature when I click on the text box ? e.g.&amp;nbsp; F5 Big IP extn 2.0&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;So, I say the original question still remains,&amp;nbsp; is it possible to use a specific format of intput to suggest that we are using a vault secret (similar to synthetics {} syntax) and not a plain text ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 18:54:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/266106#M5725</guid>
      <dc:creator>pvr</dc:creator>
      <dc:date>2024-12-23T18:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/266134#M5726</link>
      <description>&lt;P&gt;It is only possible if the extension developer has added the above code, in which case you get a dropdown with your credential vault items.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2024 01:11:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/266134#M5726</guid>
      <dc:creator>Mike_L</dc:creator>
      <dc:date>2024-12-24T01:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/281891#M6599</link>
      <description>&lt;P&gt;Came accross this, becasue I just wanted to build vault support into one extension as well.&lt;/P&gt;&lt;P&gt;From a UI configuration side this is all fine, but how would I get the actual value of the CV item in e.g. the python code of my extension?&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jul 2025 18:41:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/281891#M6599</guid>
      <dc:creator>r_weber</dc:creator>
      <dc:date>2025-07-19T18:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283722#M6649</link>
      <description>&lt;P&gt;Well, that's half of it I'd say. There is no documented way to access the content of a credential vault entry. The REST api just delivers meta data and I could not find an extension function to do this. So what am I missing here?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 10:09:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283722#M6649</guid>
      <dc:creator>TorstenHellwig</dc:creator>
      <dc:date>2025-08-13T10:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283741#M6650</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/22828"&gt;@TorstenHellwig&lt;/a&gt;,&amp;nbsp;afaik, Dynatrace automatically populates the values (in the example above for username and password), you will also get the credential vault entry id). So you don't need to call anything, you just have the values directly in activation_config as for any other configuration properties.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 13:29:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283741#M6650</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-13T13:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283742#M6651</link>
      <description>&lt;P&gt;That's what I would have expected, but it doesn't seem to be the case ...&lt;/P&gt;&lt;P&gt;In the above example 'password' and 'username' would only be filled if 'useCredentialVault' is false.&lt;BR /&gt;Otherwise 'credentialVaultId' just contains the vault ID, but no additional fields for 'username' or 'password'.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 13:41:04 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283742#M6651</guid>
      <dc:creator>r_weber</dc:creator>
      <dc:date>2025-08-13T13:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283750#M6653</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/35901"&gt;@r_weber&lt;/a&gt;&amp;nbsp;works for me. A very dirty minimal example attached.&lt;BR /&gt;&lt;BR /&gt;If executed and configured with a credential vault, I get the values from the vault. Actual snippet from extension log on a oneagent.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[b9fbad40-5573-32cf-8a7e-26873b3d0e38][python-b9fbad40-5573-32cf-8a7e-26873b3d0e38][3344887][out]2025-08-13 16:41:29,029 [INFO] credential_vault (ThreadPoolExecutor-0_0): query method started for credential_vault.
[b9fbad40-5573-32cf-8a7e-26873b3d0e38][python-b9fbad40-5573-32cf-8a7e-26873b3d0e38][3344887][err]2025-08-13 16:41:29,029 [ERROR] credential_vault (ThreadPoolExecutor-0_0): ActivationConfig(version='0.0.2', enabled=True, description='test', type=ActivationType.LOCAL, config={'endpoints': [{'useCredentialVault': True, 'credentialVaultId': 'CREDENTIALS_VAULT-8E8E7AC5C1C97734', 'username': 'api-dyntrace-user', 'password': 'DynaPassword'}]})
[b9fbad40-5573-32cf-8a7e-26873b3d0e38][python-b9fbad40-5573-32cf-8a7e-26873b3d0e38][3344887][out]2025-08-13 16:41:29,029 [INFO] credential_vault (ThreadPoolExecutor-0_0): query method ended for credential_vault.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 14:46:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283750#M6653</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-13T14:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283850#M6659</link>
      <description>&lt;P&gt;thanks for providing this! is there any documentation out there that you referenced to accomplish this?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 15:26:12 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283850#M6659</guid>
      <dc:creator>calfanonerey</dc:creator>
      <dc:date>2025-08-14T15:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283860#M6660</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;, that is interesting indeed. Exactly what I'd have expected. Wondering why it didn't work in my example and where I went wrong. However I used a more complex example with custom schemas, but in principle it was the same config.&lt;/P&gt;&lt;P&gt;So in one case (not using credential vault) the config['username'] is filled and in the other case (using credential vault) the config['credentialvaultid']['username'] is populated.&lt;/P&gt;&lt;P&gt;Maybe I was looking at a way to always populate config['username'] so that there is no special handling in code required.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 16:14:16 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283860#M6660</guid>
      <dc:creator>r_weber</dc:creator>
      <dc:date>2025-08-14T16:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283862#M6661</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/35901"&gt;@r_weber&lt;/a&gt;&amp;nbsp;no, it's in the same properites, so no special code is needed.&lt;BR /&gt;Without vault:&lt;BR /&gt;[{'useCredentialVault': False, 'username': 'user', 'password': 'password'}]&lt;BR /&gt;&lt;BR /&gt;With vault:&lt;BR /&gt;[{'useCredentialVault': True, 'credentialVaultId': 'CREDENTIALS_VAULT-8E8E7AC5C1C97734', 'username': 'api-dyntrace-user', 'password': 'Ap;DynTR4ceUs3r'}]&lt;BR /&gt;&lt;BR /&gt;activationSchema is still a magic without (public) documentation. The best way to get with it is to find an extension which uses the feature you want, download it and look in the source how to do it.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 17:08:56 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/283862#M6661</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-14T17:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/284916#M6691</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/3364"&gt;@Julius_Loman&lt;/a&gt;&amp;nbsp;thank you for your insight and sharing of this information, the zip file you shared helped me massively. And I was able to successfully pass credential vault id and capture username and password.&amp;nbsp;&lt;BR /&gt;would you happen to know how to download an extension where there is a feature I want to take from for my Development?&amp;nbsp; I currently am using VS code and extensions are visible in our environment but I am unable to download/view the source code. My api key has all the extensions 2.0 scopes available.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 18:15:26 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/284916#M6691</guid>
      <dc:creator>shahin24093</dc:creator>
      <dc:date>2025-08-27T18:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/284922#M6692</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/74298"&gt;@shahin24093&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If the extension is already in your environment, you can download it directly to your VS Code workspace when initializing the workspace:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_1-1756322294605.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29874i198F429FCE952C5F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julius_Loman_1-1756322294605.png" alt="Julius_Loman_1-1756322294605.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Another option is to grab it directly from the &lt;A href="https://www.dynatrace.com/hub/?filter=all&amp;amp;type=extension" target="_self"&gt;hub page:&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julius_Loman_0-1756322020574.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29873i767DF6265BB356F1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julius_Loman_0-1756322020574.png" alt="Julius_Loman_0-1756322020574.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Find the extension you want, Open release notes (1), release (2), and click on download (3). You will download the extension package, which contains the extension, schema, and all python packages.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 19:18:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/284922#M6692</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-08-27T19:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/296195#M7136</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;Here an extract of activationSchema.json file :&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"types"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"pythonRemote"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"type"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"object"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"properties"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"useCredentialVault"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"displayName"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"Use credential vault"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"type"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"boolean"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"nullable"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;false&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"default"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"maxObjects"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"sshCredentialId"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"displayName"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"Clé privée SSH (depuis le Credential Vault)"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"type"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"text"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"subType"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"credential"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"referencedType"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"TOKEN"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"nullable"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"precondition"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"type"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"EQUALS"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"property"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"useCredentialVault"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"expectedValue"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"constraints"&lt;/SPAN&gt;&lt;SPAN&gt;:[&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"type"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"NOT_BLANK"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;BR /&gt;&lt;/SPAN&gt;[...]&lt;BR /&gt;&lt;BR /&gt;I'm did cross test and I think the issue is about CredentialVault.&lt;BR /&gt;&lt;BR /&gt;My goal is to use the content of Id Rsa key as a Token in CredentialVault.&lt;BR /&gt;&lt;BR /&gt;Error when I deploy and add monitoring my python extension :&amp;nbsp;&lt;DIV class=""&gt;Content&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;Failed to assign monitoring configuration to ActiveGate. Reason:&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 16 Mar 2026 10:20:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/296195#M7136</guid>
      <dc:creator>TheAnswerIs42</dc:creator>
      <dc:date>2026-03-16T10:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Send a credential from credential vault to extension configuration</title>
      <link>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/296268#M7137</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;The issue was other in setup.py :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;install_requires&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;"dt-extensions-sdk"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"paramiko"&lt;/SPAN&gt;&lt;SPAN&gt;],&lt;BR /&gt;&lt;BR /&gt;This cause issue "PARAMIKO".&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 08:52:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Extensions/Send-a-credential-from-credential-vault-to-extension/m-p/296268#M7137</guid>
      <dc:creator>TheAnswerIs42</dc:creator>
      <dc:date>2026-03-17T08:52:43Z</dc:date>
    </item>
  </channel>
</rss>

