-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oradb_manage_pdb: added missing defaults for pdbadmin_user and pdbadm…
…in_password
- Loading branch information
Showing
5 changed files
with
51 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
minor_changes: | ||
- "oradb_manage_pdb: added missing defaults for pdbadmin_user and pdbadmin_password (oravirt#426)" |
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
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 |
---|---|---|
@@ -1 +1,14 @@ | ||
--- | ||
# @var pdbadmin_user:description: > | ||
# Default pdb_admin user for newly created PDBs. | ||
# | ||
# Could be set in `oracle_pdbs` to define different pdb_admin user for each PDB. | ||
# @end | ||
pdbadmin_user: >- | ||
{{ odb[1].pdbadmin_user | default('PDBADMIN') }} | ||
# @var pdbadmin_password:description: > | ||
# Password for pdb_admin user. | ||
# @end | ||
pdbadmin_password: >- | ||
{{ dbpasswords[odb.1.cdb][odb.1.pdb_name][pdbadmin_user] | default(default_dbpass) }} |