Skip to content

Commit

Permalink
Add diff suppress for storage_config.bucket field (GoogleCloudPlatfor…
Browse files Browse the repository at this point in the history
  • Loading branch information
spapi17 authored Sep 20, 2024
1 parent 8503bed commit a25e4a1
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1078,6 +1078,7 @@ func ResourceComposerEnvironment() *schema.Resource {
Type: schema.TypeString,
Required: true,
ForceNew: true,
DiffSuppressFunc: gscBucketNameDiffSuppress,
Description: `Optional. Name of an existing Cloud Storage bucket to be used by the environment.`,
},
},
Expand Down Expand Up @@ -3118,4 +3119,12 @@ func validateComposerInternalIpv4CidrBlock(v any, k string) (warns []string, err
errs = append(errs, fmt.Errorf("Composer Internal IPv4 CIDR range must have size /20"))
}
return
}

func gscBucketNameDiffSuppress(_, old, new string, _ *schema.ResourceData) bool {
prefix := "gs://"
if prefix + old == new || old == prefix + new {
return true
}
return false
}
Original file line number Diff line number Diff line change
Expand Up @@ -1156,6 +1156,39 @@ func TestAccComposerEnvironment_customBucket(t *testing.T) {
})
}

func TestAccComposerEnvironment_customBucketWithUrl(t *testing.T) {
t.Parallel()

bucketName := fmt.Sprintf("%s-%d", testComposerBucketPrefix, acctest.RandInt(t))
envName := fmt.Sprintf("%s-%d", testComposerEnvironmentPrefix, acctest.RandInt(t))
network := fmt.Sprintf("%s-%d", testComposerNetworkPrefix, acctest.RandInt(t))
subnetwork := network + "-1"
acctest.VcrTest(t, resource.TestCase{
PreCheck: func() { acctest.AccTestPreCheck(t) },
ProtoV5ProviderFactories: acctest.ProtoV5ProviderFactories(t),
CheckDestroy: testAccComposerEnvironmentDestroyProducer(t),
Steps: []resource.TestStep{
{
Config: testAccComposerEnvironment_customBucketWithUrl(bucketName, envName, network, subnetwork),
},
{
ResourceName: "google_composer_environment.test",
ImportState: true,
ImportStateVerify: true,
},
// This is a terrible clean-up step in order to get destroy to succeed,
// due to dangling firewall rules left by the Composer Environment blocking network deletion.
// TODO: Remove this check if firewall rules bug gets fixed by Composer.
{
PlanOnly: true,
ExpectNonEmptyPlan: false,
Config: testAccComposerEnvironment_customBucketWithUrl(bucketName, envName, network, subnetwork),
Check: testAccCheckClearComposerEnvironmentFirewalls(t, network),
},
},
})
}

<% unless version == "ga" -%>
// Checks Composer 3 environment creation with new fields.
func TestAccComposerEnvironmentComposer3_basic(t *testing.T) {
Expand Down Expand Up @@ -1559,6 +1592,47 @@ resource "google_compute_subnetwork" "test" {
`, bucketName, envName, network, subnetwork)
}

func testAccComposerEnvironment_customBucketWithUrl(bucketName, envName, network, subnetwork string) string {
return fmt.Sprintf(`
resource "google_storage_bucket" "test" {
name = "%s"
location = "us-central1"
force_destroy = true
}

resource "google_composer_environment" "test" {
name = "%s"
region = "us-central1"
config {
node_config {
network = google_compute_network.test.self_link
subnetwork = google_compute_subnetwork.test.self_link
}
software_config {
image_version = "composer-2.9.3-airflow-2.9.1"
}
}
storage_config {
bucket = google_storage_bucket.test.url
}
}

// use a separate network to avoid conflicts with other tests running in parallel
// that use the default network/subnet
resource "google_compute_network" "test" {
name = "%s"
auto_create_subnetworks = false
}

resource "google_compute_subnetwork" "test" {
name = "%s"
ip_cidr_range = "10.2.0.0/16"
region = "us-central1"
network = google_compute_network.test.self_link
}
`, bucketName, envName, network, subnetwork)
}

func testAccComposerEnvironment_basic(name, network, subnetwork string) string {
return fmt.Sprintf(`
resource "google_composer_environment" "test" {
Expand Down

0 comments on commit a25e4a1

Please sign in to comment.