Skip to content

Amazon Lex Bot examples from the AWS console implemented with the Terraform AWS Provider

Notifications You must be signed in to change notification settings

mick999/terraform-aws-lex-examples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-aws-lex-examples

This repo contains Terraform config for deploying the example Amazon Lex Bots.

  • BookTrip
  • OrderFlowers
  • ScheduleAppointment

These were used when developing the aws_lex_* resources for the AWS Terraform Provider.

Build Provider

Unitl the aws_lex_resources #2616 pull request is merged and released, the provider must be built and installed.

  1. Clone provider repo

    cd $GOPATH/src/github.com/terraform-providers
    git clone git@github.com:terraform-providers/terraform-provider-aws.git
    
  2. Build

    cd $GOPATH/src/github.com/terraform-providers/terraform-provider-aws
    git checkout add_aws_lex_resources
    export GO111MODULE=on
    make tools
    make build
    

Examples

  1. Clone examples repo

    mkdir -p $GOPATH/src/github.com/jzbruno
    cd $GOPATH/src/github.com/jzbruno
    git clone git@github.com:jzbruno/terraform-aws-lex-examples.git
    
  2. Choose an example.

    cd terraform-aws-lex-examples
    cd book-trip
    
  3. Update _provider.tf with your AWS account configuration.

  4. Init Terraform.

    ln -s $GOPATH/bin/terraform-provider-aws terraform-provider-aws
    terraform init
    
  5. Apply the config.

    terraform apply
    

About

Amazon Lex Bot examples from the AWS console implemented with the Terraform AWS Provider

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 100.0%