File tree Expand file tree Collapse file tree 5 files changed +18
-12
lines changed Expand file tree Collapse file tree 5 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ resource "random_string" "autonomous_database_admin_password" {
1414 min_upper = 3
1515 min_lower = 3
1616 min_numeric = 3
17- min_special = 2
17+ min_special = 1
1818 override_special = " #"
1919}
2020
@@ -24,6 +24,6 @@ resource "random_string" "graphuser_password" {
2424 min_upper = 3
2525 min_lower = 3
2626 min_numeric = 3
27- min_special = 2
27+ min_special = 1
2828 override_special = " #"
2929}
Original file line number Diff line number Diff line change @@ -238,8 +238,13 @@ outputs:
238238 visible : true
239239
240240 graph_password :
241- type : string
241+ type : copyableString
242242 title : Graph Password
243- sensitive : true
243+ sensitive : false
244+
245+ notes :
246+ type : string
247+ title : Notes
248+ visible : true
244249
245250primaryOutputButton : dashboard_url
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ create user graphuser identified by
2+ " &1" quota unlimited on data;
3+ grant connect, resource to graphuser;
4+ grant graph_developer to graphuser;
5+ ALTER USER graphuser GRANT CONNECT THROUGH " GRAPH$PROXY_USER" ;
6+ -- "wid#770GSdemo1"
7+
18BEGIN
29 ORDS .enable_schema (
310 p_enabled => TRUE,
Original file line number Diff line number Diff line change 1- @./ scripts/ admin .sql
1+ @./ scripts/ adminandrest .sql
22/
3- @. / scripts / rest . sql
3+
You can’t perform that action at this time.
0 commit comments