-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from Rycieos/6.0upgrade-docs
Add upgrade docs for 6.0
- Loading branch information
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Upgrading to Project Factory v6.0 | ||
|
||
The v6.0 release of Project Factory is a backwards incompatible release for | ||
new projects only, as it changes how the default compute service account is | ||
treated when the project is created. | ||
|
||
The default of `default_service_account` changed from `"delete"` to `"disable"`. | ||
If you want to continue deleting the default compute service account for new | ||
projects, you will need to specify: | ||
|
||
``` | ||
default_service_account = "delete" | ||
``` | ||
|
||
## Migration Instructions | ||
|
||
Projects that are already created with the default not overridden don't need | ||
any changes, as their service account is already deleted. | ||
|
||
Note that changing `default_service_account` to `"disable"` from `"delete"` on | ||
already created projects will not bring the service account back, as the input | ||
is only applied on project creation. |