Skip to content

Commit 475a1bf

Browse files
committed
Alphabetize.
1 parent e2c7774 commit 475a1bf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

internal/service/events/archive.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,6 @@ func resourceArchive() *schema.Resource {
6161
ForceNew: true,
6262
ValidateFunc: verify.ValidARN,
6363
},
64-
names.AttrName: {
65-
Type: schema.TypeString,
66-
Required: true,
67-
ForceNew: true,
68-
ValidateFunc: validArchiveName,
69-
},
7064
"kms_key_identifier": {
7165
Type: schema.TypeString,
7266
Optional: true,
@@ -75,6 +69,12 @@ func resourceArchive() *schema.Resource {
7569
validation.StringMatch(regexache.MustCompile(`^[a-zA-Z0-9_\-/:]*$`), ""),
7670
),
7771
},
72+
names.AttrName: {
73+
Type: schema.TypeString,
74+
Required: true,
75+
ForceNew: true,
76+
ValidateFunc: validArchiveName,
77+
},
7878
"retention_days": {
7979
Type: schema.TypeInt,
8080
Optional: true,

0 commit comments

Comments
 (0)