Skip to content

Commit

Permalink
Feat add oracledatabase_autonomous_database datasource (#12016) (#8440)
Browse files Browse the repository at this point in the history
[upstream:5987428dc5b26332366696a66d58e35db26400e5]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Oct 17, 2024
1 parent e23be5b commit 21e4961
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/12016.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-datasource
`google_oracle_database_autonomous_database`
```
1 change: 1 addition & 0 deletions google-beta/provider/provider_mmv1_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ var handwrittenDatasources = map[string]*schema.Resource{
"google_monitoring_app_engine_service": monitoring.DataSourceMonitoringServiceAppEngine(),
"google_monitoring_uptime_check_ips": monitoring.DataSourceGoogleMonitoringUptimeCheckIps(),
"google_netblock_ip_ranges": resourcemanager.DataSourceGoogleNetblockIpRanges(),
"google_oracle_database_autonomous_database": oracledatabase.DataSourceOracleDatabaseAutonomousDatabase(),
"google_oracle_database_autonomous_databases": oracledatabase.DataSourceOracleDatabaseAutonomousDatabases(),
"google_oracle_database_db_nodes": oracledatabase.DataSourceOracleDatabaseDbNodes(),
"google_oracle_database_db_servers": oracledatabase.DataSourceOracleDatabaseDbServers(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package oracledatabase

import (
"fmt"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-provider-google-beta/google-beta/tpgresource"
transport_tpg "github.com/hashicorp/terraform-provider-google-beta/google-beta/transport"
)

func DataSourceOracleDatabaseAutonomousDatabase() *schema.Resource {
dsSchema := tpgresource.DatasourceSchemaFromResourceSchema(ResourceOracleDatabaseAutonomousDatabase().Schema)
tpgresource.AddRequiredFieldsToSchema(dsSchema, "location", "autonomous_database_id")
tpgresource.AddOptionalFieldsToSchema(dsSchema, "project")
return &schema.Resource{
Read: dataSourceOracleDatabaseAutonomousDatabaseRead,
Schema: dsSchema,
}

}

func dataSourceOracleDatabaseAutonomousDatabaseRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*transport_tpg.Config)

id, err := tpgresource.ReplaceVars(d, config, "projects/{{project}}/locations/{{location}}/autonomousDatabases/{{autonomous_database_id}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}

d.SetId(id)

err = resourceOracleDatabaseAutonomousDatabaseRead(d, meta)
if err != nil {
return err
}

if d.Id() == "" {
return fmt.Errorf("%s not found", id)
}
return nil
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package oracledatabase_test

import (
"fmt"
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"github.com/hashicorp/terraform-provider-google-beta/google-beta/acctest"
)

func TestAccOracleDatabaseAutonomousDatabase_basic(t *testing.T) {
t.Parallel()
acctest.VcrTest(t, resource.TestCase{
PreCheck: func() { acctest.AccTestPreCheck(t) },
ProtoV5ProviderFactories: acctest.ProtoV5ProviderFactories(t),
Steps: []resource.TestStep{
{
Config: testAccOracleDatabaseAutonomousDatabase_basic(),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet("data.google_oracle_database_autonomous_database.my-adb", "display_name"),
resource.TestCheckResourceAttrSet("data.google_oracle_database_autonomous_database.my-adb", "database"),
resource.TestCheckResourceAttrSet("data.google_oracle_database_autonomous_database.my-adb", "cidr"),
resource.TestCheckResourceAttrSet("data.google_oracle_database_autonomous_database.my-adb", "network"),
resource.TestCheckResourceAttrSet("data.google_oracle_database_autonomous_database.my-adb", "properties.#"),
resource.TestCheckResourceAttrSet("data.google_oracle_database_autonomous_database.my-adb", "properties.0.character_set"),
),
},
},
})
}

func testAccOracleDatabaseAutonomousDatabase_basic() string {
return fmt.Sprintf(`
data "google_oracle_database_autonomous_database" "my-adb"{
autonomous_database_id = "do-not-delete-tf-adb"
location = "us-east4"
project = "oci-terraform-testing"
}
`)
}
37 changes: 37 additions & 0 deletions website/docs/d/oracle_database_autonomous_database.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
subcategory: "Oracle Database"
description: |-
Get information about an AutonomousDatabase.
---

# google_oracle_database_autonomous_database

Get information about an AutonomousDatabase.

For more information see the
[API](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.autonomousDatabases).

## Example Usage

```hcl
data "google_oracle_database_autonomous_database" "my-instance"{
location = "us-east4"
autonomous_database_id = "autonomous_database_id"
}
```

## Argument Reference

The following arguments are supported:

* `autonomous_database_id` - (Required) The ID of the AutonomousDatabase.

* `location` - (Required) The location of the resource.

- - -
* `project` - (Optional) The project to which the resource belongs. If it
is not provided, the provider project is used.

## Attributes Reference

See [google_oracle_database_autonomous_database](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/google_oracle_database_autonomous_database#argument-reference) resource for details of the available attributes.

0 comments on commit 21e4961

Please sign in to comment.