-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
- Loading branch information
1 parent
90016a3
commit b0dd62c
Showing
6 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:new-datasource | ||
compute: added `google_compute_region_ssl_certificate` datasource | ||
``` |
37 changes: 37 additions & 0 deletions
37
google-beta/data_source_google_compute_region_ssl_certificate.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package google | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/helper/schema" | ||
) | ||
|
||
func dataSourceGoogleRegionComputeSslCertificate() *schema.Resource { | ||
// Generate datasource schema from resource | ||
dsSchema := datasourceSchemaFromResourceSchema(resourceComputeRegionSslCertificate().Schema) | ||
|
||
// Set 'Required' schema elements | ||
addRequiredFieldsToSchema(dsSchema, "name") | ||
|
||
// Set 'Optional' schema elements | ||
addOptionalFieldsToSchema(dsSchema, "project") | ||
addOptionalFieldsToSchema(dsSchema, "region") | ||
|
||
return &schema.Resource{ | ||
Read: dataSourceComputeRegionSslCertificateRead, | ||
Schema: dsSchema, | ||
} | ||
} | ||
|
||
func dataSourceComputeRegionSslCertificateRead(d *schema.ResourceData, meta interface{}) error { | ||
config := meta.(*Config) | ||
|
||
project, region, name, err := GetRegionalResourcePropertiesFromSelfLinkOrSchema(d, config) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
d.SetId(fmt.Sprintf("projects/%s/regions/%s/sslCertificates/%s", project, region, name)) | ||
|
||
return resourceComputeRegionSslCertificateRead(d, meta) | ||
} |
47 changes: 47 additions & 0 deletions
47
google-beta/data_source_google_compute_region_ssl_certificate_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package google | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/helper/resource" | ||
) | ||
|
||
func TestAccDataSourceComputeRegionSslCertificate(t *testing.T) { | ||
t.Parallel() | ||
|
||
vcrTest(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccDataSourceComputeRegionSslCertificateConfig(randString(t, 10)), | ||
Check: resource.ComposeTestCheckFunc( | ||
checkDataSourceStateMatchesResourceStateWithIgnores( | ||
"data.google_compute_region_ssl_certificate.cert", | ||
"google_compute_region_ssl_certificate.foobar", | ||
map[string]struct{}{ | ||
"private_key": {}, | ||
}, | ||
), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccDataSourceComputeRegionSslCertificateConfig(certName string) string { | ||
return fmt.Sprintf(` | ||
resource "google_compute_region_ssl_certificate" "foobar" { | ||
name = "cert-test-%s" | ||
region = "us-central1" | ||
description = "really descriptive" | ||
private_key = file("test-fixtures/ssl_cert/test.key") | ||
certificate = file("test-fixtures/ssl_cert/test.crt") | ||
} | ||
data "google_compute_region_ssl_certificate" "cert" { | ||
name = google_compute_region_ssl_certificate.foobar.name | ||
} | ||
`, certName) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
website/docs/d/compute_region_ssl_certificate.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
subcategory: "Compute Engine" | ||
layout: "google" | ||
page_title: "Google: google_compute_region_ssl_certificate" | ||
sidebar_current: "docs-google-datasource-compute-region-ssl-certificate" | ||
description: |- | ||
Get info about a Regional Google Compute SSL Certificate. | ||
--- | ||
|
||
# google\_compute\_region\_ssl\_certificate | ||
|
||
Get info about a Region Google Compute SSL Certificate from its name. | ||
|
||
## Example Usage | ||
|
||
```tf | ||
data "google_compute_region_ssl_certificate" "my_cert" { | ||
name = "my-cert" | ||
} | ||
output "certificate" { | ||
value = data.google_compute_region_ssl_certificate.my_cert.certificate | ||
} | ||
output "certificate_id" { | ||
value = data.google_compute_region_ssl_certificate.my_cert.certificate_id | ||
} | ||
output "self_link" { | ||
value = data.google_compute_region_ssl_certificate.my_cert.self_link | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `name` (Required) - The name of the certificate. | ||
|
||
- - - | ||
|
||
* `project` - (Optional) The project in which the resource belongs. If it | ||
is not provided, the provider project is used. | ||
|
||
* `region` - (Optional) The region in which the resource belongs. If it | ||
is not provided, the provider region is used. | ||
|
||
## Attributes Reference | ||
|
||
See [google_compute_region_ssl_certificate](https://www.terraform.io/docs/providers/google/r/compute_region_ssl_certificate.html) resource for details of the available attributes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters