Skip to content

Configure and Deploy via Kinesis

Configure Kinesis

Set the Environment Variables

Clone the repository and execute:

$~ cd examples/kinesis
$~ cp .env-example .env
# Add your values to the required variables
$~ vi .env
# Load the environment variables
$~ source .env

📚 Clone a GitHub Repo

Configure the Integration

Edit examples/kinesis/main.tf as explained below

module "main" {
    source = "../.."
    <!-- Set the AWS Account Region field to match youre region -->
    aws_account_region = "eu-west-2"
}

Usage

# Initialize the terraform providers
$~ terraform init
# Preview the changes that terraform plans to make to your infrastructure
$~ terraform plan
# Deploy (--auto-approve to avoid being prompted to confirm the changes)
$~ terraform apply

📚 Terraform CLI