Giter VIP home page Giter VIP logo

infra's Introduction

Infra

Infra contains our set of Terraform scripts that defines our infrastructure.

Requirements

  • Terraform 0.12+ (brew install terraform)

Backend

We are using Terraform Cloud for remote state storage. Every main.tf should declare this at the beginning to enable remote state storage. We are passing a specific Terraform version. If you need to manage multiple Terraform version we recommend you to use tfenv.

terraform {
  required_version = ">=0.12.13"

  backend "remote" {
    hostname     = "app.terraform.io"
    organization = "debtcollective"

    workspaces {
      name = "workspace-name"
    }
  }
}

Workspaces

TBD

Modules

Chatwoot

Enable continuity in the account.

https://www.chatwoot.com/docs/conversation-continuity#enable-continuity-in-the-account

Enable inbound_emails (Login to rails console and execute the following)

account = Account.find(1)
account.enabled_features # This would list enabled features.
account.enable_features('inbound_emails')
account.save!

Set an inbound domain. This is the domain with which you have set up above.

account = Account.find(1)
account.domain='domain.com'
account.save!

After executing these steps, the mail sent from Chatwoot will have a replyto: in the following format reply+@<domain.com> and reply to those would get appended to your conversation.

infra's People

Contributors

hissingpanda avatar jlar0che avatar orlando avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

infra's Issues

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.