hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.35k stars 1.75k forks source link

missing: apps.authorizedCertificates resource #6865

Open ahmadnassri opened 4 years ago

ahmadnassri commented 4 years ago

Community Note

Description

when using google_app_engine_domain_mapping and attempting to configure a manual SSL settings, there is no way to also upload / manage the Authorized Certificate for this resource, instead the terraform provider expects to manually point to a certificate_id (presumably uploaded through the UI or Admin API)

e.g.

ssl_settings {
    ssl_management_type = "MANUAL"
    certificate_id = "12345"
}

New or Affected Resource(s)

Potential Terraform Configuration

# allow for creating / updating the ssl cert in a new / same resource

ssl_settings {
  private_key = file("path/to/private.key")
  certificate = file("path/to/certificate.crt")
}

References

b/319825553

Ewa-Tokarz commented 1 year ago

Hi there,

Is there any update on this issue? I'm facing it right now.