Skip to content

Commit

Permalink
Add type field to DNS authorization reosurce (#10030) (#2006)
Browse files Browse the repository at this point in the history
* Add type field to DNS authorization reosurce

* Add an example for regional DNS authorization

* Add an example for regional certs using regional DNS auth

* Fix lint errors

* Fix typo in the enum values

* Add type field in regional dns auth example

---------



[upstream:0ac8f5283f99aca69ac1821ecbc67200d45b0390]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Mar 1, 2024
1 parent d92b826 commit 5036aeb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/hashicorp/hcl/v2 v2.19.1
github.com/hashicorp/terraform-json v0.18.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.31.0
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240301000621-f3462a7e0dd9
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240301094629-99a8f0b964a3
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.4
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwU
github.com/hashicorp/terraform-plugin-mux v0.13.0 h1:79U401/3nd8CWwDGtTHc8F3miSCAS9XGtVarxSTDgwA=
github.com/hashicorp/terraform-plugin-sdk/v2 v2.31.0 h1:Bl3e2ei2j/Z3Hc2HIS15Gal2KMKyLAZ2om1HCEvK6es=
github.com/hashicorp/terraform-plugin-sdk/v2 v2.31.0/go.mod h1:i2C41tszDjiWfziPQDL5R/f3Zp0gahXe5No/MIO9rCE=
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240301000621-f3462a7e0dd9 h1:yctvymPVptlwEb0XI31pCRw4s/aVjVY8FYsijcGkCbM=
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240301000621-f3462a7e0dd9/go.mod h1:vJFmOnOpcf+5wEYfWdY0hXALTVCUdbj1PZmM0VHG48I=
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240301094629-99a8f0b964a3 h1:LnRVZaSPX1s7rm4zZy9aaWq7We5qLepWlAFpa6PwIQQ=
github.com/hashicorp/terraform-provider-google-beta v1.20.1-0.20240301094629-99a8f0b964a3/go.mod h1:vJFmOnOpcf+5wEYfWdY0hXALTVCUdbj1PZmM0VHG48I=
github.com/hashicorp/terraform-registry-address v0.2.3 h1:2TAiKJ1A3MAkZlH1YI/aTVcLZRu7JseiXNRHbOAyoTI=
github.com/hashicorp/terraform-registry-address v0.2.3/go.mod h1:lFHA76T8jfQteVfT7caREqguFrW3c4MFSPhZB7HHgUM=
github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ func GetCertificateManagerDnsAuthorizationApiObject(d tpgresource.TerraformResou
} else if v, ok := d.GetOkExists("domain"); !tpgresource.IsEmptyValue(reflect.ValueOf(domainProp)) && (ok || !reflect.DeepEqual(v, domainProp)) {
obj["domain"] = domainProp
}
typeProp, err := expandCertificateManagerDnsAuthorizationType(d.Get("type"), d, config)
if err != nil {
return nil, err
} else if v, ok := d.GetOkExists("type"); !tpgresource.IsEmptyValue(reflect.ValueOf(typeProp)) && (ok || !reflect.DeepEqual(v, typeProp)) {
obj["type"] = typeProp
}
labelsProp, err := expandCertificateManagerDnsAuthorizationEffectiveLabels(d.Get("effective_labels"), d, config)
if err != nil {
return nil, err
Expand All @@ -84,6 +90,10 @@ func expandCertificateManagerDnsAuthorizationDomain(v interface{}, d tpgresource
return v, nil
}

func expandCertificateManagerDnsAuthorizationType(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (interface{}, error) {
return v, nil
}

func expandCertificateManagerDnsAuthorizationEffectiveLabels(v interface{}, d tpgresource.TerraformResourceData, config *transport_tpg.Config) (map[string]string, error) {
if v == nil {
return map[string]string{}, nil
Expand Down

0 comments on commit 5036aeb

Please sign in to comment.