-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: MySQL Flex Server Auto IOPS Scaling #23391
Changes from 3 commits
39345f3
7bb27fc
4758334
c5bfa78
4be6b62
ce12244
1634591
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -704,6 +704,7 @@ | |||||
size_gb = 32 | ||||||
iops = 400 | ||||||
auto_grow_enabled = false | ||||||
iops_auto_scaling = false | ||||||
} | ||||||
|
||||||
delegated_subnet_id = azurerm_subnet.test.id | ||||||
|
@@ -971,7 +972,7 @@ | |||||
} | ||||||
|
||||||
func (r MySqlFlexibleServerResource) updateStorage(data acceptance.TestData, sizeGB int, iops int, enabled bool) string { | ||||||
return fmt.Sprintf(` | ||||||
Check failure on line 975 in internal/services/mysql/mysql_flexible_server_resource_test.go GitHub Actions / test
|
||||||
%s | ||||||
|
||||||
resource "azurerm_mysql_flexible_server" "test" { | ||||||
|
@@ -989,6 +990,7 @@ | |||||
size_gb = %d | ||||||
iops = %d | ||||||
auto_grow_enabled = %t | ||||||
iops_auto_scaling = %t | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't lined up properly
Suggested change
|
||||||
} | ||||||
} | ||||||
`, r.template(data), data.RandomInteger, sizeGB, iops, enabled) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test is failing as it's missing an argument down below
Suggested change
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here