Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Syntax fix for #3 #4

Merged
merged 2 commits into from
Nov 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This approach allows you to easily:

To get started with creating your environment, you can fork this repository on your Git environment (inside your personal or organization GitHub, inside an Azure DevOps project or any other Version Control System that your company uses.)

You can then customize your environment by following the steps inside the [configuration folder](./configuration)
You can then customize your environment by following the steps inside the [configuration folder](./configuration) and review our sample configuration [onboarding video here](https://www.youtube.com/watch?v=M5BXm30IpdY)


## Related repositories
Expand Down
10 changes: 10 additions & 0 deletions configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ Rover will echo back the subscription selected by default for your environment.
az account set -s <subscription_name_OR_GUID>
```

### Picking your environment

Once you have completed the preliminary steps above, you can start reviewing the configurations, we recommend you start your first deployment with the demo section.

| example environment | description |
|------------------------|---------------------------------------------------------------------------|
| [demo](./demo) | demo environment without RBAC, diagnostics and pipelines |
| [sandpit](./sandpit) | WIP initial enterprise environment, with diagnostics and simple pipelines |
| [non-prod](./non-prod) | WIP |
| [prod](prod) | WIP |

## Multiple engineers in the same subscription

Expand Down
5 changes: 4 additions & 1 deletion configuration/demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Assumptions:
- Demo environment does not have pipelines and is meant to be run locally.
- Demo environment does not have diagnostics enabled.
- Demo environment does not have RBAC model.
- All resources are provisioned in the same subscription.

## Deploying demo environment

Expand All @@ -23,7 +24,7 @@ export environment=demo

```bash
rover -lz /tf/caf/public/landingzones/caf_launchpad \
-var-folder /tf/caf/configuration/${environment}/level0 \
-var-folder /tf/caf/configuration/${environment}/level0/launchpad \
-parallelism 30 \
-level level0 \
-env ${environment} \
Expand All @@ -35,6 +36,8 @@ rover -lz /tf/caf/public/landingzones/caf_launchpad \

#### Deploy foundations

In this section we use foundations as passthrough:

```bash
rover -lz /tf/caf/public/landingzones/caf_foundations/ \
-var-folder /tf/caf/configuration/${environment}/level1 \
Expand Down