Skip to content

Commit 2682611

Browse files
committed
bug fixes - password special characters, rest enable, copyable password
1 parent 9e9ea72 commit 2682611

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

terraform/datasources.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

terraform/schema.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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

245250
primaryOutputButton: dashboard_url

terraform/scripts/admin.sql

Lines changed: 0 additions & 6 deletions
This file was deleted.

terraform/scripts/rest.sql renamed to terraform/scripts/adminandrest.sql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18
BEGIN
29
ORDS.enable_schema(
310
p_enabled => TRUE,

terraform/scripts/graphs.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@./scripts/admin.sql
1+
@./scripts/adminandrest.sql
22
/
3-
@./scripts/rest.sql
3+

0 commit comments

Comments
 (0)