Skip to content

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Kita committed Aug 19, 2024
1 parent 0e956a3 commit 3cdfda4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ibm/service/power/resource_ibm_pi_capture_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ func testAccCheckIBMPICaptureConfigBasic(name string) string {
func testAccCheckIBMPICaptureCloudStorageConfig(name string) string {
return fmt.Sprintf(`
resource "ibm_pi_capture" "capture_instance" {
pi_cloud_instance_id="%[1]s"
pi_cloud_instance_id="%s"
pi_capture_name = "%s"
pi_instance_name = "%s"
pi_capture_destination = "cloud-storage"
pi_capture_cloud_storage_region = "us-east"
pi_capture_cloud_storage_region = "%s"
pi_capture_cloud_storage_access_key = "%s"
pi_capture_cloud_storage_secret_key = "%s"
pi_capture_storage_image_path = "%s"
Expand All @@ -194,7 +194,7 @@ func testAccCheckIBMPICaptureCloudStorageConfig(name string) string {
func testAccCheckIBMPICaptureBothConfig(name string) string {
return fmt.Sprintf(`
resource "ibm_pi_capture" "capture_instance" {
pi_cloud_instance_id="%[1]s"
pi_cloud_instance_id="%s"
pi_capture_name = "%s"
pi_instance_name = "%s"
pi_capture_destination = "both"
Expand Down

0 comments on commit 3cdfda4

Please sign in to comment.