You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: create/mysql.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ type mySQLCmd struct {
25
25
MachineTypestring`placeholder:"${mysql_machine_default}" help:"Defines the sizing for a particular MySQL instance. Available types: ${mysql_machine_types}"`
26
26
AllowedCidrs []meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"Specifies the IP addresses allowed to connect to the instance." `
27
27
SSHKeys []storage.SSHKey`help:"Contains a list of SSH public keys, allowed to connect to the db server, in order to up-/download and directly restore database backups."`
28
-
SSHKeysFile*os.File`help:"Path to a file containing a list of SSH public keys (see above), separated by newlines. Lines prefixed with # are ignored."`
28
+
SSHKeysFile*os.File`predictor:"file" help:"Path to a file containing a list of SSH public keys (see above), separated by newlines. Lines prefixed with # are ignored."`
29
29
SQLMode*[]storage.MySQLMode`placeholder:"\"MODE1, MODE2, ...\"" help:"Configures the sql_mode setting. Modes affect the SQL syntax MySQL supports and the data validation checks it performs. Defaults to: ${mysql_mode}"`
30
30
CharacterSetNamestring`placeholder:"${mysql_charset}" help:"Configures the character_set_server variable."`
31
31
CharacterSetCollationstring`placeholder:"${mysql_collation}" help:"Configures the collation_server variable."`
Copy file name to clipboardExpand all lines: create/postgres.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ type postgresCmd struct {
24
24
MachineTypestring`placeholder:"${postgres_machine_default}" help:"Defines the sizing for a particular PostgreSQL instance. Available types: ${postgres_machine_types}"`
25
25
AllowedCidrs []meta.IPv4CIDR`placeholder:"203.0.113.1/32" help:"Specifies the IP addresses allowed to connect to the instance." `
26
26
SSHKeys []storage.SSHKey`help:"Contains a list of SSH public keys, allowed to connect to the db server, in order to up-/download and directly restore database backups."`
27
-
SSHKeysFile*os.File`help:"Path to a file containing a list of SSH public keys (see above), separated by newlines. Lines prefixed with # are ignored."`
27
+
SSHKeysFile*os.File`predictor:"file" help:"Path to a file containing a list of SSH public keys (see above), separated by newlines. Lines prefixed with # are ignored."`
28
28
PostgresVersion storage.PostgresVersion`placeholder:"${postgres_version_default}" help:"Release version with which the PostgreSQL instance is created. Available versions: ${postgres_versions}"`
29
29
KeepDailyBackups*int`placeholder:"${postgres_backup_retention_days}" help:"Number of daily database backups to keep. Note that setting this to 0, backup will be disabled and existing dumps deleted immediately."`
0 commit comments