Skip to content

Commit

Permalink
Minor copy additions around sample modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreylees authored Sep 17, 2020
1 parent 23945cf commit e005f65
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,12 @@ variable SDM_API_SECRET_KEY {}

### Customize the Terraform module

Create a `.tf` file (in this example, we called it `onboarding.tf`) and paste in the module.
Presented below are two options for your module - a minimal installion and a fully-featured one with more options to try out. Create a `.tf` file (in this example, we called it `onboarding.tf`) and paste in your desired module, then make any necessary adjustments.

#### Minimal installation

This install option creates only the default resources: sdm gateways, ssh, mysql, and http. It provides you with the necessities you need to get started trying out strongDM.

#### Minimal install
This install option creates default resources: sdm gateways, ssh, mysql, and http.
```hcl
module "strongdm_onboarding" {
source = "strongdm/onboarding/sdm"
Expand All @@ -88,7 +90,10 @@ module "strongdm_onboarding" {
}
```

#### Full feature options
#### Fully-featured installation

This install option creates many more resources and users than the minimal installation option does. It will take more time to provision, and consume more AWS resources, but will provide a more robust testing playground.

```hcl
module "strongdm_onboarding" {
source = "strongdm/onboarding/sdm"
Expand Down

0 comments on commit e005f65

Please sign in to comment.