Skip to content

update readme #290

Merged
merged 1 commit into from
Jul 16, 2026
Merged
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
7 changes: 7 additions & 0 deletions docs/how-to/account-provisioning-submodule-repo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,13 @@ Example:
% GITURL=$(TFNOLOG=1 tf-output git_url_ssh|grep -v \# |sed -e 's/"//g')
% echo $GITURL
git@github.e.it.census.gov:terraform/260957726152-adsd-chec-dev-gov_apps-chec.git

If echo $GITURL output is different from the above or like below
git@github.e.it.census.gov:terraform/260957726152-adsd-chec-dev-gov_apps-chec.git Warning: Deprecated Parameter The parameter dynamodb_table is deprecated. Use parameter use_lockfile instead.
run the below
% GITURL=$(TFNOLOG=1 tf-output git_url_ssh|grep -v \# | grep -E 'git.*\.git' | sed -e 's/"//g')
% echo $GITURL
git@github.e.it.census.gov:terraform/260957726152-adsd-chec-dev-gov_apps-chec.git
```

# Submodule repository (2.0)
Expand Down