hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.61k stars 9k forks source link

[New Service]: AppFabric #34549

Closed mikecarr2 closed 1 week ago

mikecarr2 commented 7 months ago

Description

AppFabric is AWS' new service to collect SaaS logs from various different tools (e.g. Jira, Slack). It normalises the logs into OCSF then forwards them onto AWS services such as Lambda, Firehose, or Security Lake or third party services such as Splunk, Rapid7 and Logz.io.

Requested Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_appfabric_app_bundle" "example" {
  kms_key_id = ""
  tags       = {}
}

resource "aws_appfabric_ingestion" "example" {
  app            = "" # list of valid values 
  ingestion_type = ""
  tags           = {}
  tenant_id      = ""
}

resource "aws_appfabric_ingestion_destination" "example" {
  destination_configuration = {
    audit_log_destination = {
      destination = {

        firehose_stream = {
          stream_name = ""
        }

        s3_bucket = {
          bucket_name = ""
          prefix      = ""
        }
      }
    }

  }

  processing_configuration = {
    audit_log = {
      format = ""
      schema = ""
    }

  }

  tags = {}
}

resource "aws_appfabric_app_authorization" "example" {
  app       = ""
  auth_type = ""
  credential = {
    api_key_credential = {
      api_key = ""
    }
    oauth2_credential = {
      client_id     = ""
      client_secret = ""
    }
  }

  tenant = {
    tenant_display_name = ""
    tenant_identifier   = ""
  }

  tags = {}

}

References

https://pkg.go.dev/github.com/aws/aws-sdk-go/service/appfabric https://docs.aws.amazon.com/appfabric/latest/api/API_Operations.html

Would you like to implement a fix?

No

github-actions[bot] commented 7 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

github-actions[bot] commented 1 week ago

[!WARNING] This issue has been closed, meaning that any additional comments are hard for our team to see. Please assume that the maintainers will not see them.

Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed.

github-actions[bot] commented 1 week ago

This functionality has been released in v5.56.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!