Git Product home page Git Product logo

terraform-aws-dms's Introduction

AWS Database Migration Service (DMS) Terraform module

Features

AWS Database Migration Service (AWS DMS) is a cloud service that makes it easy to migrate relational databases, data warehouses, NoSQL databases, and other types of data stores. You can use AWS DMS to migrate your data into the AWS Cloud or between combinations of cloud and on-premises setups.

Usage

AWS DMS Certificates:
module "certificates" {
  source = "../../modules/certificates/"

  create = true

  certificate_id  = "name"
  certificate_pem = file("path_pem_file")

  tags = var.tags
}
AWS DMS Database Migration Tasks:
module "migration_tasks" {
  source = "github.com/kleytonhsantos/terraform-aws-dms//modules/database_migration_tasks?ref=v1.0.1"
pef
  create = true

  cdc_start_time            = "timestamp"
  migration_type            = "full-load-and-cdc"
  replication_task_id       = "replication-1.example.com"
  replication_instance_arn  = "arn:aws:dms:us-east-1:123456789123:task:3QK6K5UPDEVILBQRLCXGJA5X5QN2O64SXYZ3TYS"
  source_endpoint_arn       = "arn:aws:dms:us-east-1:123456789123:endpoint:TREFHUQW63TJQQYQI7JJLFS5SZOF6LUH4E6J55Q"
  target_endpoint_arn       = "arn:aws:dms:us-east-1:123456789123:endpoint:TREFHUQW63TJQQYQI7JJLFS5SZOF6LUH4E6T66E"
  table_mappings            = file("./config/table_mappings.json")
  replication_task_settings = file("./config/replication_task_settings.json")

  tags = var.tags
}
AWS DMS Endpoints:
module "source_endpoint" {
  source = "github.com/kleytonhsantos/terraform-aws-dms//modules/endpoints?ref=v1.0.1"

  create = true

  endpoint_id                 = "replication-1.example.com"
  engine_name                 = "mysql"
  server_name                 = "database01.example.com"
  port                        = 3306
  username                    = root
  password                    = "root123"
  database_name               = "database_example"
  extra_connection_attributes = file("./config/extra_connection_attributes.json")

  tags = var.tags
}

module "target_endpoint" {
  source = "github.com/kleytonhsantos/terraform-aws-dms//modules/endpoints?ref=v1.0.1"

  create = true

  endpoint_id   = "replication-1.example.com"
  engine_name   = "s3"
  endpoint_type = "target"

  s3_settings = [{
    bucket_name             = s3.example.com"
    compression_type        = "GZIP"
  }]

  /* Examples
  mongodb_settings = [{
    auth_source = "mongo-test.example.com"
  }]

  kinesis_settings = [{
    message_format = "json-unformatted"
  }]

  kafka_settings = [{
    broker_name = "ec2-12-345-678-901.compute-1.amazonaws.com:2345,ec2-12-345-678-901.compute-1.amazonaws.com:9876"
  }]

  elasticsearch_settings = [{
    endpoint_uri = "test.elastsearch.example.com"
    service_access_role_arn = "arn:aws:iam::123456789012:role/aws-service-role/es.amazonaws.com/AWSServiceRoleForAmazonElasticsearchService"
  }]
  */

  tags = var.tags
}
AWS DMS Event Subscription:
module "event_subscription" {
 source = "github.com/kleytonhsantos/terraform-aws-dms//modules/event_subscription?ref=v1.0.1"

  create = true

  name             = "example1"
  sns_topic_arn    = arn:aws:sns:us-east-1:123456789012:dms
  source_type      = "replication-instance"
  source_ids       = [example01]
  event_categories = ["creation", "failure"]

  tags = var.tags
}
AWS DMS Replication Instance:
module "replication_instances" {
  source = "github.com/kleytonhsantos/terraform-aws-dms//modules/replication_instances?ref=v1.0.1"

  create = true

  replication_instance_id     = "name"
  vpc_security_group_ids      = "vpc-00b000f00"
  replication_subnet_group_id = "test_replication"
  availability_zone           = "us-east-1a"

  tags = var.tags
}
AWS DMS Subnet Groups:
module "subnet_groups" {

 source = "github.com/kleytonhsantos/terraform-aws-dms//modules/subnet_groups?ref=v1.0.1"

  create = true

  replication_subnet_group_description = "Example subnet groups for DMS"
  replication_subnet_group_id          = "Example subnet groups for DMS"

  subnet_ids = [
    subnet-0g2g5555g4g7g8g9w
    subnet-0g2g5555g4g7g8g9g
  ]

  tags = var.tags

}

Examples

Authors

Module is maintained by Kleyton Santos with help from these awesome contributors.

License

Apache 2 Licensed. See LICENSE for full details.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.