Skip to content
This repository has been archived by the owner on Aug 18, 2022. It is now read-only.

updated branch name master to main to fix issue with none functional guide https:… #143

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 cmd/landingzone_fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Git is not required`,
func init() {
landingzoneCmd.AddCommand(lzFetchCmd)
lzFetchCmd.Flags().StringP("repo", "r", "azure/caf-terraform-landingzones", "Which repo on GitHub to fetch")
lzFetchCmd.Flags().StringP("branch", "b", "master", "Which branch to fetch")
lzFetchCmd.Flags().StringP("branch", "b", "main", "Which branch to fetch")
lzFetchCmd.Flags().IntP("strip", "s", 1, "Levels to strip from repo hierarchy, best left as 1")
lzFetchCmd.Flags().StringP("dest", "d", "./landingzones", "Where to place output")
lzFetchCmd.Flags().StringP("folder", "f", "", "Extract a sub-folder from the repo")
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Within this directory you would expect to see the Terraform modules and provider

## CAF Concepts

This is not intended to be a complete guide to CAF Landing Zones, which is a complex & nuanced topic, [some of the complete CAF docs can be found here](https://github.com/Azure/caf-terraform-landingzones/tree/master/documentation). However there are a few concepts and terms you will need to understand when running Rover v2
This is not intended to be a complete guide to CAF Landing Zones, which is a complex & nuanced topic, [some of the complete CAF docs can be found here](https://github.com/Azure/caf-terraform-landingzones/tree/main/documentation). However there are a few concepts and terms you will need to understand when running Rover v2

- **Landing zone**
Landing zones (or *CAF Landing Zones*) are simply sets of Azure resources deployed via CAF Terraform modules, they are highly opinionated, governed and designed to support one or more application workloads.
Expand Down Expand Up @@ -323,4 +323,4 @@ Note: --launchpad is only required when testing the level0 launchpad. It is not

The test action also expects a statename parameter. This is the landing zone key the specific landing zone configuration under test. [An example can be found here.](../examples/minimal/configs/level0/launchpad/configuration.tfvars)

Sample tests can be found in the [examples folder of this repo.](../examples/tests)
Sample tests can be found in the [examples folder of this repo.](../examples/tests)
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ End of functions from https://github.com/client9/shlib
EOF

PROJECT_NAME="rovergo"
OWNER=aztfmod
OWNER=martyni
REPO="rovergo"
BINARY=rover
FORMAT=tar.gz
Expand Down