Skip to content

Commit 8ec35c9

Browse files
authored
Merge branch 'main' into release-1.2
2 parents c0f80dc + 25325fa commit 8ec35c9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

AcmeCaPlugin/AcmeCaPluginConfig.cs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,30 @@ public static Dictionary<string, PropertyConfigInfo> GetPluginAnnotations()
207207
Type = "Secret"
208208
}
209209

210+
//Infoblox DNS
211+
,
212+
["Infoblox_Host"] = new PropertyConfigInfo()
213+
{
214+
Comments = "Infoblox DNS: API URL (e.g., https://infoblox.example.com/wapi/v2.12) only if using Infoblox DNS (Optional)",
215+
Hidden = false,
216+
DefaultValue = "",
217+
Type = "String"
218+
},
219+
["Infoblox_Username"] = new PropertyConfigInfo()
220+
{
221+
Comments = "Infoblox DNS: Username for authentication only if using Infoblox DNS (Optional)",
222+
Hidden = false,
223+
DefaultValue = "",
224+
Type = "String"
225+
},
226+
["Infoblox_Password"] = new PropertyConfigInfo()
227+
{
228+
Comments = "Infoblox DNS: Password for authentication only if using Infoblox DNS (Optional)",
229+
Hidden = true,
230+
DefaultValue = "",
231+
Type = "Secret"
232+
}
233+
210234
};
211235
}
212236

0 commit comments

Comments
 (0)