terraform/website/source/docs/providers/aws/r/dms_certificate.html.markdown

1.3 KiB

layout page_title sidebar_current description
aws AWS: aws_dms_certificate docs-aws-resource-dms-certificate Provides a DMS (Data Migration Service) certificate resource.

aws_dms_certificate

Provides a DMS (Data Migration Service) certificate resource. DMS certificates can be created, deleted, and imported.

Example Usage

# Create a new certificate
resource "aws_dms_certificate" "test" {
  certificate_id  = "test-dms-certificate-tf"
  certificate_pem = "..."
}

Argument Reference

The following arguments are supported:

  • certificate_id - (Required) The certificate identifier.

    • Must contain from 1 to 255 alphanumeric characters and hyphens.
  • certificate_pem - (Optional) The contents of the .pem X.509 certificate file for the certificate. Either certificate_pem or certificate_wallet must be set.

  • certificate_wallet - (Optional) The contents of the Oracle Wallet certificate for use with SSL. Either certificate_pem or certificate_wallet must be set.

Attributes Reference

The following attributes are exported:

  • certificate_arn - The Amazon Resource Name (ARN) for the certificate.

Import

Certificates can be imported using the certificate_arn, e.g.

$ terraform import aws_dms_certificate.test arn:aws:dms:us-west-2:123456789:cert:xxxxxxxxxx