@@ -28,7 +28,7 @@ func TestAccNetappVolumeQuotaRule_netappVolumeQuotaRuleBasicExample_update(t *te
28
28
Config : testAccNetappVolumeQuotaRule_netappVolumeQuotaRuleFull (context ),
29
29
},
30
30
{
31
- ResourceName : "google_netapp_volume_quota_rule.test_quotaRule " ,
31
+ ResourceName : "google_netapp_volume_quota_rule.test_quota_rule " ,
32
32
ImportState : true ,
33
33
ImportStateVerify : true ,
34
34
ImportStateVerifyIgnore : []string {"labels" , "location" , "name" , "terraform_labels" , "volume_name" },
@@ -37,7 +37,7 @@ func TestAccNetappVolumeQuotaRule_netappVolumeQuotaRuleBasicExample_update(t *te
37
37
Config : testAccNetappVolumeQuotaRule_netappVolumeQuotaRuleFull_update (context ),
38
38
},
39
39
{
40
- ResourceName : "google_netapp_volume_quota_rule.test_quotaRule " ,
40
+ ResourceName : "google_netapp_volume_quota_rule.test_quota_rule " ,
41
41
ImportState : true ,
42
42
ImportStateVerify : true ,
43
43
ImportStateVerifyIgnore : []string {"labels" , "location" , "name" , "terraform_labels" , "volume_name" },
@@ -65,42 +65,42 @@ resource "google_netapp_volume" "default" {
65
65
protocols = ["NFSV3"]
66
66
}
67
67
68
- resource "google_netapp_volume_quota_rule" "test_default_user_quotaRule " {
68
+ resource "google_netapp_volume_quota_rule" "test_default_user_quota_rule " {
69
69
depends_on = [google_netapp_volume.default]
70
70
location = google_netapp_volume.default.location
71
71
volume_name = google_netapp_volume.default.name
72
- name = "testvolumequotaRule %{random_suffix}"
72
+ name = "testvolumequotarule %{random_suffix}"
73
73
description = "This is a test description"
74
74
type = "DEFAULT_USER_QUOTA"
75
75
disk_limit_mib = 15
76
76
}
77
77
78
- resource "google_netapp_volume_quota_rule" "test_default_group_quotaRule " {
78
+ resource "google_netapp_volume_quota_rule" "test_default_group_quota_rule " {
79
79
depends_on = [google_netapp_volume.default]
80
80
location = google_netapp_volume.default.location
81
81
volume_name = google_netapp_volume.default.name
82
- name = "testvolumequotaRule %{random_suffix}"
82
+ name = "testvolumequotarule %{random_suffix}"
83
83
description = "This is a test description"
84
84
type = "DEFAULT_GROUP_QUOTA"
85
85
disk_limit_mib = 20
86
86
}
87
87
88
- resource "google_netapp_volume_quota_rule" "test_individual_user_quotaRule " {
88
+ resource "google_netapp_volume_quota_rule" "test_individual_user_quota_rule " {
89
89
depends_on = [google_netapp_volume.default]
90
90
location = google_netapp_volume.default.location
91
91
volume_name = google_netapp_volume.default.name
92
- name = "testvolumequotaRule %{random_suffix}"
92
+ name = "testvolumequotarule %{random_suffix}"
93
93
description = "This is a test description"
94
94
type = "INDIVIDUAL_USER_QUOTA"
95
95
disk_limit_mib = 25
96
96
target = "001"
97
97
}
98
98
99
- resource "google_netapp_volume_quota_rule" "test_individual_group_quotaRule " {
99
+ resource "google_netapp_volume_quota_rule" "test_individual_group_quota_rule " {
100
100
depends_on = [google_netapp_volume.default]
101
101
location = google_netapp_volume.default.location
102
102
volume_name = google_netapp_volume.default.name
103
- name = "testvolumequotaRule %{random_suffix}"
103
+ name = "testvolumequotarule %{random_suffix}"
104
104
description = "This is a test description"
105
105
type = "INDIVIDUAL_GROUP_QUOTA"
106
106
disk_limit_mib = 30
@@ -132,42 +132,42 @@ resource "google_netapp_volume" "default" {
132
132
protocols = ["NFSV3"]
133
133
}
134
134
135
- resource "google_netapp_volume_quota_rule" "test_default_user_quotaRule " {
135
+ resource "google_netapp_volume_quota_rule" "test_default_user_quota_rule " {
136
136
depends_on = [google_netapp_volume.default]
137
137
location = google_netapp_volume.default.location
138
138
volume_name = google_netapp_volume.default.name
139
- name = "testvolumequotaRule %{random_suffix}"
139
+ name = "testvolumequotarule %{random_suffix}"
140
140
description = "This is a test description"
141
141
type = "DEFAULT_USER_QUOTA"
142
142
disk_limit_mib = 35
143
143
}
144
144
145
- resource "google_netapp_volume_quota_rule" "test_default_group_quotaRule " {
145
+ resource "google_netapp_volume_quota_rule" "test_default_group_quota_rule " {
146
146
depends_on = [google_netapp_volume.default]
147
147
location = google_netapp_volume.default.location
148
148
volume_name = google_netapp_volume.default.name
149
- name = "testvolumequotaRule %{random_suffix}"
149
+ name = "testvolumequotarule %{random_suffix}"
150
150
description = "This is a test description"
151
151
type = "DEFAULT_GROUP_QUOTA"
152
152
disk_limit_mib = 40
153
153
}
154
154
155
- resource "google_netapp_volume_quota_rule" "test_individual_user_quotaRule " {
155
+ resource "google_netapp_volume_quota_rule" "test_individual_user_quota_rule " {
156
156
depends_on = [google_netapp_volume.default]
157
157
location = google_netapp_volume.default.location
158
158
volume_name = google_netapp_volume.default.name
159
- name = "testvolumequotaRule %{random_suffix}"
159
+ name = "testvolumequotarule %{random_suffix}"
160
160
description = "This is a test description"
161
161
type = "INDIVIDUAL_USER_QUOTA"
162
162
disk_limit_mib = 45
163
163
target = "001"
164
164
}
165
165
166
- resource "google_netapp_volume_quota_rule" "test_individual_group_quotaRule " {
166
+ resource "google_netapp_volume_quota_rule" "test_individual_group_quota_rule " {
167
167
depends_on = [google_netapp_volume.default]
168
168
location = google_netapp_volume.default.location
169
169
volume_name = google_netapp_volume.default.name
170
- name = "testvolumequotaRule %{random_suffix}"
170
+ name = "testvolumequotarule %{random_suffix}"
171
171
description = "This is a test description"
172
172
type = "INDIVIDUAL_GROUP_QUOTA"
173
173
disk_limit_mib = 50
0 commit comments