无法使用C#程序访问蔚蓝云外壳
请帮助我,我无法访问蔚蓝云外壳,我在蔚蓝云外壳中设置了一个脚本,但现在我不能使用C#代码打开蔚蓝云外壳。我想要一个天蓝色的云壳
预期结果 invoke access azure cloud shell ==> run terraform script ==> show output
C#代码
string extendCommand = "terraform init ";
ProcessStartInfo procStartInfo = new ProcessStartInfo("https://shell.azure.com/powershell", "/terraform_test" + extendCommand) //terraform_test folder name
{
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true
};
Process proc = new Process
{
StartInfo = procStartInfo
};
这里是我运行的terraform脚本本地和云shell
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.46.0"
}
}
}
#provider "azurerm" {
# version = "~> 1.34.0"
#}
# Configure the Microsoft Azure Provider
provider "azurerm" {
features {}
}
# Hub RG
resource "azurerm_resource_group" "rg" {
name = "resource-name-01"
location = "eastus"
}
####################### Database setup ################################
resource "azurerm_storage_account" "st" {
name = "irs01st"
resource_group_name = azurerm_resource_group.rg.name
location = azurerm_resource_group.rg.location
account_tier = "Standard"
account_replication_type = "LRS"
}
#resource "azurerm_sql_server" "ss" {
# name = "irs01-ss"
# resource_group_name = azurerm_resource_group.rg.name
# location = azurerm_resource_group.rg.location
# version = "12.0"
# administrator_login = "admin"
# administrator_login_password = "Abc@123"
#}
####################### Start Sql server #############################
resource "azurerm_mssql_database" "sqldb" {
name = "db01"
server_id = azurerm_sql_server.ss.id
# resource_group_name = azurerm_resource_group.rg.name
# storage_account_name = azurerm_storage_account.st.name
collation = "SQL_Latin1_General_CP1_CI_AS"
license_type = "LicenseIncluded"
max_size_gb = 1
#read_scale = true
sku_name = "Basic"
#zone_redundant = true #this is required sku > basic
}
################################# OR ##################################
resource "azurerm_sql_database" "sqldb" {
name = "sql-db"
resource_group_name = "${azurerm_resource_group.rg.name}"
location = "${azurerm_resource_group.rg.location}"
server_name = "${azurerm_sql_server.ss.name}"
edition = "Basic"
collation = "SQL_Latin1_General_CP1_CI_AS"
create_mode = "Default"
requested_service_objective_name = "Basic"
}
########################## End sql server ############################```
Thanks in advance
发布于 2021-08-20 01:19:22
你不能这样做。云外壳的设计不是用来编写脚本的。如果可能的话,您需要编写复杂的浏览器自动化来驱动UI。这不是一个合理的要求,您需要重新考虑所建议的解决方案。
您的意思是使用Azure CLI?如果是的话,请编辑这个问题来澄清这一点。cloud是CLI的几种环境之一,但CLI不是云shell。
https://stackoverflow.com/questions/68846238
复制相似问题