Skip to content
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

Support VS2022 as a remote_debugging_version argument part of azurerm_windows_web_app & azurerm_linux_web_app resources #24407

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ func SiteConfigSchemaLinux() *pluginsdk.Schema {
ValidateFunc: validation.StringInSlice([]string{
"VS2017",
"VS2019",
"VS2022",
}, false),
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ func SiteConfigSchemaWindows() *pluginsdk.Schema {
ValidateFunc: validation.StringInSlice([]string{
"VS2017",
"VS2019",
"VS2022",
}, false),
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1735,7 +1735,7 @@ resource "azurerm_linux_web_app" "test" {
local_mysql_enabled = true
managed_pipeline_mode = "Integrated"
remote_debugging_enabled = true
remote_debugging_version = "VS2019"
remote_debugging_version = "VS2022"
use_32_bit_worker = false
websockets_enabled = true
ftps_state = "FtpsOnly"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2127,7 +2127,7 @@ resource "azurerm_windows_web_app" "test" {
local_mysql_enabled = true
managed_pipeline_mode = "Integrated"
remote_debugging_enabled = true
remote_debugging_version = "VS2019"
remote_debugging_version = "VS2022"
use_32_bit_worker = false
websockets_enabled = true
ftps_state = "FtpsOnly"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/linux_web_app.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ A `site_config` block supports the following:

* `remote_debugging_enabled` - (Optional) Should Remote Debugging be enabled? Defaults to `false`.

* `remote_debugging_version` - (Optional) The Remote Debugging Version. Possible values include `VS2017` and `VS2019`
* `remote_debugging_version` - (Optional) The Remote Debugging Version. Possible values include `VS2017`, `VS2019` and `VS2022`.

* `scm_ip_restriction` - (Optional) One or more `scm_ip_restriction` blocks as defined above.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/windows_web_app.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ A `site_config` block supports the following:

* `remote_debugging_enabled` - (Optional) Should Remote Debugging be enabled. Defaults to `false`.

* `remote_debugging_version` - (Optional) The Remote Debugging Version. Possible values include `VS2017` and `VS2019`
* `remote_debugging_version` - (Optional) The Remote Debugging Version. Possible values include `VS2017`, `VS2019` and `VS2022`.

* `scm_ip_restriction` - (Optional) One or more `scm_ip_restriction` blocks as defined above.

Expand Down
Loading