Skip to content

Commit

Permalink
#24405: Support VS2022 as a remote_debugging_version (#24407)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavmb authored Jan 8, 2024
1 parent 624a9b0 commit f34d516
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
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

0 comments on commit f34d516

Please sign in to comment.