Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cloud-3228432
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
cloud-3228432
Commits
80770c98
Commit
80770c98
authored
12 years ago
by
Yas Naoi
Browse files
Options
Downloads
Patches
Plain Diff
by yas: Expanded the length of AWS Access Key up to 32.
parent
92efae9b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/iaas/modules/aws_cloud/aws_cloud.install
+1
-1
1 addition, 1 deletion
modules/iaas/modules/aws_cloud/aws_cloud.install
modules/iaas/modules/aws_cloud/aws_cloud_ui.inc
+2
-2
2 additions, 2 deletions
modules/iaas/modules/aws_cloud/aws_cloud_ui.inc
with
3 additions
and
3 deletions
modules/iaas/modules/aws_cloud/aws_cloud.install
+
1
−
1
View file @
80770c98
...
@@ -49,7 +49,7 @@ function aws_cloud_schema() {
...
@@ -49,7 +49,7 @@ function aws_cloud_schema() {
'cloud_name'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'cloud_name'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'api_version'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
10
),
'api_version'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
10
),
'host_uri'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'host_uri'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'aws_access_key'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
2
0
),
'aws_access_key'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
3
2
),
'aws_secret_key'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'aws_secret_key'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'user_id'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
32
),
'user_id'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
32
),
'image_upload_url'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
'image_upload_url'
=>
array
(
'type'
=>
'varchar'
,
'not null'
=>
TRUE
,
'length'
=>
64
),
...
...
This diff is collapsed.
Click to expand it.
modules/iaas/modules/aws_cloud/aws_cloud_ui.inc
+
2
−
2
View file @
80770c98
...
@@ -210,8 +210,8 @@ function aws_cloud_add_form($form_state, $edit = array(), $op = '') {
...
@@ -210,8 +210,8 @@ function aws_cloud_add_form($form_state, $edit = array(), $op = '') {
$form
[
'cloud'
][
'aws_access_key'
]
=
array
(
$form
[
'cloud'
][
'aws_access_key'
]
=
array
(
'#type'
=>
'textfield'
,
'#type'
=>
'textfield'
,
'#title'
=>
t
(
'Access Key'
),
'#title'
=>
t
(
'Access Key'
),
'#description'
=>
t
(
'e.g. AWS: 12ABCDEFGHIJKVWXYZ89 or OpenStack: admin:admin'
),
'#description'
=>
t
(
'
16-32 Characters,
e.g. AWS: 12ABCDEFGHIJKVWXYZ89 or OpenStack: admin:admin'
),
'#size'
=>
3
0
,
'#size'
=>
3
2
,
'#required'
=>
TRUE
,
'#required'
=>
TRUE
,
'#default_value'
=>
$edit
[
'aws_access_key'
],
'#default_value'
=>
$edit
[
'aws_access_key'
],
);
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment