Skip to content

Terraform module to deploy Hadoop on Oracle Cloud Infrastructure (OCI)

License

Notifications You must be signed in to change notification settings

oci-portfolio/oci-quickstart-hadoop

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

oci-quickstart-hadoop

These are Terraform modules that deploy Hadoop on Oracle Cloud Infrastructure (OCI).

About

Apache Hadoop is an open-source software for reliable, scalable, distributed computing. Hadoop framework allows distributed processing of large data sets across clusters of computers using simple programming models

Oracle Cloud Infrastructure Hadoop Terraform Module deploys a secure Hadoop replica set on Oracle Cloud Infrastructure (OCI) using Terraform.

Prerequisites

  1. Download and install Terraform (v0.10.3 or later)
  2. Download and install the OCI Terraform Provider (v2.0.0 or later)
  3. Export OCI credentials using guidance at Export Credentials.

Usage

module "hadoop" {
  source               = "./modules"
  compartment_id       = "${var.compartment_ocid}"
  display_name         = "${var.display_name}"
  availability_domains = "${var.availability_domains}"
  image_id             = "${var.image_id}"
  subnet_ids           = "${var.subnet_ids}"
  ssh_authorized_keys  = "${var.ssh_authorized_keys}"
  ssh_private_key      = "${var.ssh_private_key}"
  bastion_host         = "${var.bastion_public_ip}"
  bastion_user         = "${var.bastion_user}"
  bastion_private_key  = "${var.bastion_private_key}"
}

About

Terraform module to deploy Hadoop on Oracle Cloud Infrastructure (OCI)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 45.0%
  • Shell 31.8%
  • Go 23.2%