fix the missing access key for testcase
This commit is contained in:
parent
3f7de941f1
commit
5e44a28a42
|
@ -6,8 +6,8 @@ import (
|
||||||
|
|
||||||
func testAlicloudAccessConfig() *AlicloudAccessConfig {
|
func testAlicloudAccessConfig() *AlicloudAccessConfig {
|
||||||
return &AlicloudAccessConfig{
|
return &AlicloudAccessConfig{
|
||||||
AlicloudAccessKey: "",
|
AlicloudAccessKey: "ak",
|
||||||
AlicloudSecretKey: "",
|
AlicloudSecretKey: "acs",
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,8 @@
|
||||||
"source_image":"centos_7_2_64_40G_base_20170222.vhd",
|
"source_image":"centos_7_2_64_40G_base_20170222.vhd",
|
||||||
"ssh_username":"root",
|
"ssh_username":"root",
|
||||||
"instance_type":"ecs.n1.tiny",
|
"instance_type":"ecs.n1.tiny",
|
||||||
"io_optimized":"true"
|
"io_optimized":"true",
|
||||||
|
"image_force_delete":"true"
|
||||||
}],
|
}],
|
||||||
"provisioners": [{
|
"provisioners": [{
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
|
|
Loading…
Reference in New Issue