Skip to content

Commit d23eaad

Browse files
config changes
1 parent b618b7f commit d23eaad

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

AcmeCaPlugin/AcmeCaPluginConfig.cs

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static Dictionary<string, PropertyConfigInfo> GetPluginAnnotations()
4646
},
4747
["DnsProvider"] = new PropertyConfigInfo()
4848
{
49-
Comments = "DNS Provider to use for ACME DNS-01 challenges (options Google, Cloudflare, AwsRoute53, Azure, Ns1)",
49+
Comments = "DNS Provider to use for ACME DNS-01 challenges (options Google, Cloudflare, AwsRoute53, Azure, Ns1, Infoblox)",
5050
Hidden = false,
5151
DefaultValue = "Google",
5252
Type = "String"
@@ -130,6 +130,30 @@ public static Dictionary<string, PropertyConfigInfo> GetPluginAnnotations()
130130
Type = "String"
131131
}
132132

133+
//Infoblox DNS
134+
,
135+
["Infoblox_ApiUrl"] = new PropertyConfigInfo()
136+
{
137+
Comments = "Infoblox DNS: API URL (e.g., https://infoblox.example.com/wapi/v2.12) only if using Infoblox DNS (Optional)",
138+
Hidden = false,
139+
DefaultValue = "",
140+
Type = "String"
141+
},
142+
["Infoblox_Username"] = new PropertyConfigInfo()
143+
{
144+
Comments = "Infoblox DNS: Username for authentication only if using Infoblox DNS (Optional)",
145+
Hidden = false,
146+
DefaultValue = "",
147+
Type = "String"
148+
},
149+
["Infoblox_Password"] = new PropertyConfigInfo()
150+
{
151+
Comments = "Infoblox DNS: Password for authentication only if using Infoblox DNS (Optional)",
152+
Hidden = true,
153+
DefaultValue = "",
154+
Type = "Secret"
155+
}
156+
133157
};
134158
}
135159

0 commit comments

Comments
 (0)