Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for partner event bus and sources #19072

Merged

Commits on Apr 9, 2021

  1. r/aws_cloudwatch_event_rule: Add 'TestAccAWSCloudWatchEventRule_Partn…

    …erEventBus'.
    
    Acceptance test output:
    
    $ EVENT_BRIDGE_PARTNER_EVENT_BUS_NAME=aws.partner/datadog.com/TerraformTesting make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSCloudWatchEventRule_PartnerEventBus'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventRule_PartnerEventBus -timeout 180m
    === RUN   TestAccAWSCloudWatchEventRule_PartnerEventBus
    === PAUSE TestAccAWSCloudWatchEventRule_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventRule_PartnerEventBus
        resource_aws_cloudwatch_event_rule_test.go:495: Step 1/2 error: Error running apply: exit status 1
            2021/03/29 13:31:03 [DEBUG] Using modified User-Agent: Terraform/0.12.26 HashiCorp-terraform-exec/0.13.0
    
            Error: error reading CloudWatch Events Rule (aws.partner/datadog.com/TerraformTesting/tf-acc-test-rule-500421321801107394): unexpected format for ID ("aws.partner/datadog.com/TerraformTesting/tf-acc-test-rule-500421321801107394"), expected <event-bus-name>/<rule-name> or <rule-name>
    
              on terraform_plugin_test.tf line 2, in resource "aws_cloudwatch_event_rule" "test":
               2: resource "aws_cloudwatch_event_rule" "test" {
    
        testing_new.go:63: Error running post-test destroy, there may be dangling resources: exit status 1
            2021/03/29 13:31:05 [DEBUG] Using modified User-Agent: Terraform/0.12.26 HashiCorp-terraform-exec/0.13.0
    
            Error: unexpected format for ID ("aws.partner/datadog.com/TerraformTesting/tf-acc-test-rule-500421321801107394"), expected <event-bus-name>/<rule-name> or <rule-name>
    
    --- FAIL: TestAccAWSCloudWatchEventRule_PartnerEventBus (5.18s)
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	5.283s
    FAIL
    GNUmakefile:27: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    4aed4f4 View commit details
    Browse the repository at this point in the history
  2. r/aws_cloudwatch_event_rule: Support partner event bus names.

    Acceptance test output:
    
    $ EVENT_BRIDGE_PARTNER_EVENT_BUS_NAME=aws.partner/datadog.com/TerraformTesting make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSCloudWatchEventRule_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventRule_ -timeout 180m
    === RUN   TestAccAWSCloudWatchEventRule_basic
    === PAUSE TestAccAWSCloudWatchEventRule_basic
    === RUN   TestAccAWSCloudWatchEventRule_EventBusName
    === PAUSE TestAccAWSCloudWatchEventRule_EventBusName
    === RUN   TestAccAWSCloudWatchEventRule_role
    === PAUSE TestAccAWSCloudWatchEventRule_role
    === RUN   TestAccAWSCloudWatchEventRule_description
    === PAUSE TestAccAWSCloudWatchEventRule_description
    === RUN   TestAccAWSCloudWatchEventRule_pattern
    === PAUSE TestAccAWSCloudWatchEventRule_pattern
    === RUN   TestAccAWSCloudWatchEventRule_ScheduleAndPattern
    === PAUSE TestAccAWSCloudWatchEventRule_ScheduleAndPattern
    === RUN   TestAccAWSCloudWatchEventRule_NamePrefix
    === PAUSE TestAccAWSCloudWatchEventRule_NamePrefix
    === RUN   TestAccAWSCloudWatchEventRule_Name_Generated
    === PAUSE TestAccAWSCloudWatchEventRule_Name_Generated
    === RUN   TestAccAWSCloudWatchEventRule_tags
    === PAUSE TestAccAWSCloudWatchEventRule_tags
    === RUN   TestAccAWSCloudWatchEventRule_IsEnabled
    === PAUSE TestAccAWSCloudWatchEventRule_IsEnabled
    === RUN   TestAccAWSCloudWatchEventRule_PartnerEventBus
    === PAUSE TestAccAWSCloudWatchEventRule_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventRule_basic
    === CONT  TestAccAWSCloudWatchEventRule_NamePrefix
    === CONT  TestAccAWSCloudWatchEventRule_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventRule_IsEnabled
    === CONT  TestAccAWSCloudWatchEventRule_tags
    === CONT  TestAccAWSCloudWatchEventRule_Name_Generated
    === CONT  TestAccAWSCloudWatchEventRule_description
    === CONT  TestAccAWSCloudWatchEventRule_ScheduleAndPattern
    === CONT  TestAccAWSCloudWatchEventRule_pattern
    === CONT  TestAccAWSCloudWatchEventRule_role
    === CONT  TestAccAWSCloudWatchEventRule_EventBusName
    --- PASS: TestAccAWSCloudWatchEventRule_Name_Generated (50.87s)
    --- PASS: TestAccAWSCloudWatchEventRule_PartnerEventBus (51.28s)
    --- PASS: TestAccAWSCloudWatchEventRule_ScheduleAndPattern (51.51s)
    --- PASS: TestAccAWSCloudWatchEventRule_NamePrefix (52.07s)
    --- PASS: TestAccAWSCloudWatchEventRule_role (60.54s)
    --- PASS: TestAccAWSCloudWatchEventRule_description (69.58s)
    --- PASS: TestAccAWSCloudWatchEventRule_pattern (69.88s)
    --- PASS: TestAccAWSCloudWatchEventRule_IsEnabled (84.21s)
    --- PASS: TestAccAWSCloudWatchEventRule_basic (85.22s)
    --- PASS: TestAccAWSCloudWatchEventRule_EventBusName (87.87s)
    --- PASS: TestAccAWSCloudWatchEventRule_tags (94.29s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	94.393s
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    ab22c60 View commit details
    Browse the repository at this point in the history
  3. r/aws_cloudwatch_event_permission: Add 'TestAccAWSCloudWatchEventPerm…

    …ission_PartnerEventBus'.
    
    Acceptance test output:
    
    $ EVENT_BRIDGE_PARTNER_EVENT_BUS_NAME=aws.partner/datadog.com/TerraformTesting make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSCloudWatchEventPermission_PartnerEventBus'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventPermission_PartnerEventBus -timeout 180m
    === RUN   TestAccAWSCloudWatchEventPermission_PartnerEventBus
    === PAUSE TestAccAWSCloudWatchEventPermission_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventPermission_PartnerEventBus
        resource_aws_cloudwatch_event_permission_test.go:328: Step 1/2 error: Error running apply: exit status 1
            2021/03/29 17:37:22 [DEBUG] Using modified User-Agent: Terraform/0.12.26 HashiCorp-terraform-exec/0.13.0
    
            Error: Creating CloudWatch Events permission failed: ValidationException: 1 validation error detected: Value 'aws.partner/datadog.com/TerraformTesting' at 'eventBusName' failed to satisfy constraint: Member must satisfy regular expression pattern: [\.\-_A-Za-z0-9]+
            	status code: 400, request id: 8329ec8c-828c-4048-a665-60aaafd76f0d
    
              on terraform_plugin_test.tf line 2, in resource "aws_cloudwatch_event_permission" "test":
               2: resource "aws_cloudwatch_event_permission" "test" {
    
    --- FAIL: TestAccAWSCloudWatchEventPermission_PartnerEventBus (3.87s)
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	3.961s
    FAIL
    GNUmakefile:27: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    6543ef8 View commit details
    Browse the repository at this point in the history
  4. r/aws_cloudwatch_event_permission: Support partner event bus names.

    Acceptance test output:
    
    $ EVENT_BRIDGE_PARTNER_EVENT_BUS_NAME=aws.partner/datadog.com/TerraformTesting make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSCloudWatchEventPermission_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventPermission_ -timeout 180m
    === RUN   TestAccAWSCloudWatchEventPermission_basic
    === PAUSE TestAccAWSCloudWatchEventPermission_basic
    === RUN   TestAccAWSCloudWatchEventPermission_EventBusName
    === PAUSE TestAccAWSCloudWatchEventPermission_EventBusName
    === RUN   TestAccAWSCloudWatchEventPermission_Action
    === PAUSE TestAccAWSCloudWatchEventPermission_Action
    === RUN   TestAccAWSCloudWatchEventPermission_Condition
    === PAUSE TestAccAWSCloudWatchEventPermission_Condition
    === RUN   TestAccAWSCloudWatchEventPermission_Multiple
    === PAUSE TestAccAWSCloudWatchEventPermission_Multiple
    === RUN   TestAccAWSCloudWatchEventPermission_Disappears
    === PAUSE TestAccAWSCloudWatchEventPermission_Disappears
    === RUN   TestAccAWSCloudWatchEventPermission_PartnerEventBus
    === PAUSE TestAccAWSCloudWatchEventPermission_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventPermission_basic
    === CONT  TestAccAWSCloudWatchEventPermission_Multiple
    === CONT  TestAccAWSCloudWatchEventPermission_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventPermission_Disappears
    === CONT  TestAccAWSCloudWatchEventPermission_Action
    === CONT  TestAccAWSCloudWatchEventPermission_Condition
    === CONT  TestAccAWSCloudWatchEventPermission_EventBusName
    === CONT  TestAccAWSCloudWatchEventPermission_PartnerEventBus
        resource_aws_cloudwatch_event_permission_test.go:328: Step 1/2 error: Error running apply: exit status 1
            2021/03/29 17:47:27 [DEBUG] Using modified User-Agent: Terraform/0.12.26 HashiCorp-terraform-exec/0.13.0
    
            Error: Creating CloudWatch Events permission failed: ValidationException: 1 validation error detected: Value 'aws.partner/datadog.com/TerraformTesting' at 'eventBusName' failed to satisfy constraint: Member must satisfy regular expression pattern: [\.\-_A-Za-z0-9]+
            	status code: 400, request id: 0975effd-27f5-4d2d-9b5f-d4a2d0b1a318
    
              on terraform_plugin_test.tf line 2, in resource "aws_cloudwatch_event_permission" "test":
               2: resource "aws_cloudwatch_event_permission" "test" {
    
    --- FAIL: TestAccAWSCloudWatchEventPermission_PartnerEventBus (10.31s)
    --- PASS: TestAccAWSCloudWatchEventPermission_EventBusName (27.23s)
    --- PASS: TestAccAWSCloudWatchEventPermission_Action (28.79s)
    --- PASS: TestAccAWSCloudWatchEventPermission_Multiple (36.03s)
    --- PASS: TestAccAWSCloudWatchEventPermission_Condition (37.43s)
    --- PASS: TestAccAWSCloudWatchEventPermission_basic (47.07s)
    --- PASS: TestAccAWSCloudWatchEventPermission_Disappears (138.42s)
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	138.532s
    FAIL
    GNUmakefile:27: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    efc0114 View commit details
    Browse the repository at this point in the history
  5. Revert "r/aws_cloudwatch_event_permission: Support partner event bus …

    …names."
    
    This reverts commit 9147433726b98896a2c367cda5499d71f973080d.
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    a975015 View commit details
    Browse the repository at this point in the history
  6. Revert "r/aws_cloudwatch_event_permission: Add 'TestAccAWSCloudWatchE…

    …ventPermission_PartnerEventBus'."
    
    This reverts commit 10feef37ef808c78b7eeac16233fc3e2a5686fc6.
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    fe0a09c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    61e6000 View commit details
    Browse the repository at this point in the history
  8. r/aws_cloudwatch_event_target: Add 'TestAccAWSCloudWatchEventTarget_P…

    …artnerEventBus'.
    
    Acceptance test output:
    
    $ EVENT_BRIDGE_PARTNER_EVENT_BUS_NAME=aws.partner/datadog.com/TerraformTesting make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSCloudWatchEventTarget_PartnerEventBus'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventTarget_PartnerEventBus -timeout 180m
    === RUN   TestAccAWSCloudWatchEventTarget_PartnerEventBus
    === PAUSE TestAccAWSCloudWatchEventTarget_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventTarget_PartnerEventBus
    map[string]string{"%":"16", "arn":"arn:aws:sns:us-west-2:123456789012:tf-acc-test-8868416352113624735", "batch_target.#":"0", "dead_letter_config.#":"0", "ecs_target.#":"0", "event_bus_name":"aws.partner/datadog.com/TerraformTesting", "id":"aws.partner/datadog.com/TerraformTesting-tf-acc-test-8868416352113624735-tf-acc-test-8868416352113624735", "input":"", "input_path":"", "input_transformer.#":"0", "kinesis_target.#":"0", "retry_policy.#":"0", "role_arn":"", "rule":"tf-acc-test-8868416352113624735", "run_command_targets.#":"0", "sqs_target.#":"0", "target_id":"tf-acc-test-8868416352113624735"}    resource_aws_cloudwatch_event_target_test.go:646: Step 2/2 error running import: exit status 1
            2021/03/30 14:26:29 [DEBUG] Using modified User-Agent: Terraform/0.12.26 HashiCorp-terraform-exec/0.13.0
    
            Error: unexpected format for ID ("aws.partner/datadog.com/TerraformTesting/tf-acc-test-8868416352113624735/tf-acc-test-8868416352113624735"), expected <event-bus-name>/<rule-name>/<target-id> or <rule-name>/<target-id>
    
    --- FAIL: TestAccAWSCloudWatchEventTarget_PartnerEventBus (15.08s)
    FAIL
    FAIL	github.com/terraform-providers/terraform-provider-aws/aws	15.433s
    FAIL
    GNUmakefile:27: recipe for target 'testacc' failed
    make: *** [testacc] Error 1
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    025083e View commit details
    Browse the repository at this point in the history
  9. r/aws_cloudwatch_event_target: Support partner event bus names.

    Acceptance test output:
    
    $ EVENT_BRIDGE_PARTNER_EVENT_BUS_NAME=aws.partner/datadog.com/TerraformTesting make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSCloudWatchEventTarget_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventTarget_ -timeout 180m
    === RUN   TestAccAWSCloudWatchEventTarget_basic
    === PAUSE TestAccAWSCloudWatchEventTarget_basic
    === RUN   TestAccAWSCloudWatchEventTarget_EventBusName
    === PAUSE TestAccAWSCloudWatchEventTarget_EventBusName
    === RUN   TestAccAWSCloudWatchEventTarget_GeneratedTargetId
    === PAUSE TestAccAWSCloudWatchEventTarget_GeneratedTargetId
    === RUN   TestAccAWSCloudWatchEventTarget_RetryPolicy_DeadLetterConfig
    === PAUSE TestAccAWSCloudWatchEventTarget_RetryPolicy_DeadLetterConfig
    === RUN   TestAccAWSCloudWatchEventTarget_full
    === PAUSE TestAccAWSCloudWatchEventTarget_full
    === RUN   TestAccAWSCloudWatchEventTarget_disappears
    === PAUSE TestAccAWSCloudWatchEventTarget_disappears
    === RUN   TestAccAWSCloudWatchEventTarget_ssmDocument
    === PAUSE TestAccAWSCloudWatchEventTarget_ssmDocument
    === RUN   TestAccAWSCloudWatchEventTarget_ecs
    === PAUSE TestAccAWSCloudWatchEventTarget_ecs
    === RUN   TestAccAWSCloudWatchEventTarget_ecsWithBlankTaskCount
    === PAUSE TestAccAWSCloudWatchEventTarget_ecsWithBlankTaskCount
    === RUN   TestAccAWSCloudWatchEventTarget_batch
    === PAUSE TestAccAWSCloudWatchEventTarget_batch
    === RUN   TestAccAWSCloudWatchEventTarget_kinesis
    === PAUSE TestAccAWSCloudWatchEventTarget_kinesis
    === RUN   TestAccAWSCloudWatchEventTarget_sqs
    === PAUSE TestAccAWSCloudWatchEventTarget_sqs
    === RUN   TestAccAWSCloudWatchEventTarget_input_transformer
    === PAUSE TestAccAWSCloudWatchEventTarget_input_transformer
    === RUN   TestAccAWSCloudWatchEventTarget_inputTransformerJsonString
    === PAUSE TestAccAWSCloudWatchEventTarget_inputTransformerJsonString
    === RUN   TestAccAWSCloudWatchEventTarget_PartnerEventBus
    === PAUSE TestAccAWSCloudWatchEventTarget_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventTarget_basic
    === CONT  TestAccAWSCloudWatchEventTarget_ecsWithBlankTaskCount
    === CONT  TestAccAWSCloudWatchEventTarget_PartnerEventBus
    === CONT  TestAccAWSCloudWatchEventTarget_inputTransformerJsonString
    === CONT  TestAccAWSCloudWatchEventTarget_input_transformer
    === CONT  TestAccAWSCloudWatchEventTarget_sqs
    === CONT  TestAccAWSCloudWatchEventTarget_kinesis
    === CONT  TestAccAWSCloudWatchEventTarget_batch
    === CONT  TestAccAWSCloudWatchEventTarget_full
    === CONT  TestAccAWSCloudWatchEventTarget_ecs
    === CONT  TestAccAWSCloudWatchEventTarget_ssmDocument
    === CONT  TestAccAWSCloudWatchEventTarget_disappears
    === CONT  TestAccAWSCloudWatchEventTarget_GeneratedTargetId
    === CONT  TestAccAWSCloudWatchEventTarget_RetryPolicy_DeadLetterConfig
    === CONT  TestAccAWSCloudWatchEventTarget_EventBusName
    --- PASS: TestAccAWSCloudWatchEventTarget_disappears (36.09s)
    --- PASS: TestAccAWSCloudWatchEventTarget_PartnerEventBus (38.80s)
    --- PASS: TestAccAWSCloudWatchEventTarget_GeneratedTargetId (40.40s)
    --- PASS: TestAccAWSCloudWatchEventTarget_sqs (40.45s)
    --- PASS: TestAccAWSCloudWatchEventTarget_ssmDocument (42.26s)
    --- PASS: TestAccAWSCloudWatchEventTarget_inputTransformerJsonString (50.73s)
    --- PASS: TestAccAWSCloudWatchEventTarget_ecsWithBlankTaskCount (55.82s)
    --- PASS: TestAccAWSCloudWatchEventTarget_ecs (55.97s)
    --- PASS: TestAccAWSCloudWatchEventTarget_EventBusName (62.47s)
    --- PASS: TestAccAWSCloudWatchEventTarget_input_transformer (63.21s)
    --- PASS: TestAccAWSCloudWatchEventTarget_basic (72.88s)
    --- PASS: TestAccAWSCloudWatchEventTarget_RetryPolicy_DeadLetterConfig (78.52s)
    --- PASS: TestAccAWSCloudWatchEventTarget_kinesis (80.00s)
    --- PASS: TestAccAWSCloudWatchEventTarget_full (80.40s)
    --- PASS: TestAccAWSCloudWatchEventTarget_batch (173.11s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	173.215s
    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    627dcf1 View commit details
    Browse the repository at this point in the history
  10. Add CHANGELOG entry.

    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    81bbfcb View commit details
    Browse the repository at this point in the history
  11. Fix terraform errors.

    ewbankkit committed Apr 9, 2021
    Configuration menu
    Copy the full SHA
    addbc8f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f462b32 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    7c92d94 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2021

  1. Configuration menu
    Copy the full SHA
    57a396e View commit details
    Browse the repository at this point in the history

Commits on May 4, 2021

  1. Configuration menu
    Copy the full SHA
    357c023 View commit details
    Browse the repository at this point in the history
  2. r/aws_cloudwatch_event_bus: Tidy up partner event source acceptance t…

    …esting.
    
    Acceptance test output:
    
    % make testacc TEST=./aws TESTARGS='-run=TestAccAWSCloudWatchEventBus_'
    ==> Checking that code complies with gofmt requirements...
    TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSCloudWatchEventBus_ -timeout 180m
    === RUN   TestAccAWSCloudWatchEventBus_basic
    === PAUSE TestAccAWSCloudWatchEventBus_basic
    === RUN   TestAccAWSCloudWatchEventBus_tags
    === PAUSE TestAccAWSCloudWatchEventBus_tags
    === RUN   TestAccAWSCloudWatchEventBus_default
    === PAUSE TestAccAWSCloudWatchEventBus_default
    === RUN   TestAccAWSCloudWatchEventBus_disappears
    === PAUSE TestAccAWSCloudWatchEventBus_disappears
    === RUN   TestAccAWSCloudWatchEventBus_PartnerEventSource
        resource_aws_cloudwatch_event_bus_test.go:228: Environment variable EVENT_BRIDGE_PARTNER_EVENT_SOURCE_NAME is not set
    --- SKIP: TestAccAWSCloudWatchEventBus_PartnerEventSource (0.00s)
    === CONT  TestAccAWSCloudWatchEventBus_basic
    === CONT  TestAccAWSCloudWatchEventBus_disappears
    === CONT  TestAccAWSCloudWatchEventBus_default
    === CONT  TestAccAWSCloudWatchEventBus_tags
    --- PASS: TestAccAWSCloudWatchEventBus_default (2.47s)
    --- PASS: TestAccAWSCloudWatchEventBus_disappears (10.27s)
    --- PASS: TestAccAWSCloudWatchEventBus_basic (32.65s)
    --- PASS: TestAccAWSCloudWatchEventBus_tags (41.85s)
    PASS
    ok  	github.com/terraform-providers/terraform-provider-aws/aws	44.857s
    ewbankkit committed May 4, 2021
    Configuration menu
    Copy the full SHA
    c3fd44a View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'ewbankkit/f-aws_cloudwatch_event_rule-p…

    …artner-event' into HEAD
    ewbankkit committed May 4, 2021
    Configuration menu
    Copy the full SHA
    55f9b31 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9e51097 View commit details
    Browse the repository at this point in the history