Skip to content

Commit

Permalink
Merge pull request #69 from G-Core/feature/CDI-914-add-the-use_dns01_…
Browse files Browse the repository at this point in the history
…le_challenge-option-to-terraform

CDI-914: add use_dns01_le_challenge option
  • Loading branch information
andrei-lukyanchyk authored Dec 24, 2024
2 parents 050df98 + ce59a5d commit 90dd936
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gcore/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ type Options struct {
StaticResponseHeaders *StaticResponseHeaders `json:"static_response_headers"`
TLSVersions *TLSVersions `json:"tls_versions"`
UseDefaultLEChain *UseDefaultLEChain `json:"use_default_le_chain"`
UseDNS01LEChallenge *UseDNS01LEChallenge `json:"use_dns01_le_challenge"`
UserAgentACL *UserAgentACL `json:"user_agent_acl"`
UseRSALECert *UseRSALECert `json:"use_rsa_le_cert"`
WAAP *WAAP `json:"waap"`
Expand Down Expand Up @@ -305,6 +306,11 @@ type UseDefaultLEChain struct {
Value bool `json:"value"`
}

type UseDNS01LEChallenge struct {
Enabled bool `json:"enabled"`
Value bool `json:"value"`
}

type UserAgentACL struct {
Enabled bool `json:"enabled"`
PolicyType string `json:"policy_type"`
Expand Down

0 comments on commit 90dd936

Please sign in to comment.