Skip to content

Commit 6d9d547

Browse files
authored
Merge pull request #772 from ovh/dev/aamstutz/cloud_project_region_storage_presign-force-upper
chore: Force uppercased region in resource ovh_cloud_project_region_storage_presign
2 parents 6fa8075 + ec2d077 commit 6d9d547

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

ovh/resource_cloud_project_region_storage_presign.go

+11-9
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ package ovh
22

33
import (
44
"fmt"
5-
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
6-
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
75
"net/url"
86
"strconv"
7+
"strings"
98
"time"
9+
10+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11+
"github.com/ovh/terraform-provider-ovh/ovh/helpers"
1012
)
1113

1214
func resourceCloudProjectRegionStoragePresign() *schema.Resource {
@@ -21,25 +23,25 @@ func resourceCloudProjectRegionStoragePresign() *schema.Resource {
2123
Required: true,
2224
ForceNew: true,
2325
DefaultFunc: schema.EnvDefaultFunc("OVH_CLOUD_PROJECT_SERVICE", nil),
24-
Description: "Service name of the resource representing the ID of the cloud project.",
26+
Description: "Service name of the resource representing the ID of the cloud project",
2527
},
2628
"region_name": {
2729
Type: schema.TypeString,
2830
Required: true,
2931
ForceNew: true,
30-
Description: "Region name.",
32+
Description: "Region name",
3133
},
3234
"name": {
3335
Type: schema.TypeString,
3436
Required: true,
3537
ForceNew: true,
36-
Description: "The S3 storage container's name.",
38+
Description: "The S3 storage container's name",
3739
},
3840
"expire": {
3941
Type: schema.TypeInt,
4042
Required: true,
4143
ForceNew: true,
42-
Description: "How long (in seconds) the URL will be valid.",
44+
Description: "How long (in seconds) the URL will be valid",
4345
},
4446
"method": {
4547
Type: schema.TypeString,
@@ -57,14 +59,14 @@ func resourceCloudProjectRegionStoragePresign() *schema.Resource {
5759
Type: schema.TypeString,
5860
Required: true,
5961
ForceNew: true,
60-
Description: "Name of the object to download or upload.",
62+
Description: "Name of the object to download or upload",
6163
},
6264

6365
// Computed
6466
"url": {
6567
Type: schema.TypeString,
6668
Computed: true,
67-
Description: "Presigned URL.",
69+
Description: "Presigned URL",
6870
},
6971
},
7072
}
@@ -73,7 +75,7 @@ func resourceCloudProjectRegionStoragePresign() *schema.Resource {
7375
func resourceCloudProjectRegionStoragePresignCreate(d *schema.ResourceData, meta interface{}) error {
7476
config := meta.(*Config)
7577
serviceName := d.Get("service_name").(string)
76-
regionName := d.Get("region_name").(string)
78+
regionName := strings.ToUpper(d.Get("region_name").(string))
7779
name := d.Get("name").(string)
7880

7981
resp := &PresignedURL{}

0 commit comments

Comments
 (0)