Questions tagged [azure-public-ip]

50 questions
7
votes
1 answer

terraform: add public IP to only one azure VM

I'm creating 4 vms through count in azurerm_virtual_machine but i want to create only one public IP and associate it with the first VM ? is that possible if so how ? below is my template file resource "azurerm_network_interface" "nics" { count …
5
votes
3 answers

How to attach Public Static IP to Azure App Service

There are 100 external domains are pointing to my existing application. We're planning to migrate to Azure App service. In this case, we have to request all domain users to point to our new app service. It involved lot of coordination and takes…
venkat
  • 461
  • 2
  • 5
  • 11
3
votes
1 answer

How to make Azure not delete Public IP when deleting service / ingress-controller?

I have an nginx-ingress controller with the following config (in helm release): controller: service: loadBalancerIP: "" Public IP was created manually by myself. After I deleted the namespace in AKS I was a bit surprised to see…
3
votes
1 answer

Failed to save IP address changes for network interface

Im trying to add a Public IP to a virtual machine but I received the following error: Failed to save IP address changes for network interface 'XXX'. Error: Compute resource VMNAME has a zone constraint 1 but the PublicIPAddress …
exitista
  • 563
  • 2
  • 10
  • 21
2
votes
1 answer

No Availability Zones available in Azure North Central US Region

I'm deploying a global networking solution and using Terraform as my IaC solution. I have ExpressRoutes, VPN Gateways, Vnet-to-Vnet connections etc. I've deployed a VPN Gateway in Azure North Central US and now when I come to deploy and IP address…
Architect Jamie
  • 1,621
  • 4
  • 18
2
votes
1 answer

Access Azure Blob Files also by Azure Public IPs

I would like to access a blob e.g. https://mystorage.blob.core.windows.net/container/file.dat also by using a public IP from Azure in my embedded application. For example https://1.2.3.4/container/file.dat should be the same file. I have checked…
Demir
  • 1,787
  • 1
  • 29
  • 42
2
votes
1 answer

Multiple egress public IP created, but only one used

I'm using AKS to execute multiple load tests agents in parallel against an external application. The agents are pods without services associated to them. The cluster has no Ingress controller. I want the target application to be hit from multiple…
blakelead
  • 1,780
  • 2
  • 17
  • 28
2
votes
2 answers

Delete unused, unattached, unassociated resources Azure CLI

I'm trying to list unused, unattached, and unassociated resources inside Azure using Azure CLI. So far, I've got unmanaged disks using the command: unmanagedDiskNames=$(az disk list -g $rgName --query "[?(managedBy==null)].name" -o tsv) I've got…
Yuval Podoksik
  • 508
  • 2
  • 7
  • 23
2
votes
1 answer

Is there any equivalent to aws eip in azure? Apart from load balancer

we have an active-passive server setup.So we want to allocate a public ip to active server. We are able to do this in AWS using eip .Is there any feature which we can use in azure just like eip in aws?
1
vote
1 answer

Regarding Deleting public IP without effecting VM

In my current azure platform I have created vm scale set using az cli command. Then by default it created a load balancer and public ip and got associated with it. Now I want to delete this public ip, because I don't have any need with this. I am…
1
vote
1 answer

Azure Kubernetes(AKS) External IP not reachable

The external IP which is listed in my nginx loadbalancer service is not reachable(ping/telnet/curl) kc get services | grep nginx nginx-ingress-ingress-nginx-controller LoadBalancer 10.0.11.13 20.166.xx.xx …
Sandro_ops
  • 11
  • 2
1
vote
1 answer

In Azure, why is reserved basic public IP cheaper than dynamic basic public IP?

From here: https://azure.microsoft.com/en-us/pricing/details/ip-addresses/ Not quite sure why the reserved IP costs less? I assume this is by design, but if a student asked me why this is the case, I'd have no explanation. Anyone have any ideas or…
Nick Schroeder
  • 1,340
  • 1
  • 13
  • 17
1
vote
1 answer

Terraform aws_spot_fleet_request public_ip attribute not found

ERROR: ╷ │ Error: Unsupported attribute │ │ on spot_inst.tf line 82, in resource "null_resource" "spot_inst_ssh": │ 82: host = element(aws_spot_fleet_request.spot_inst..public_ip,"${each.value.IMO}") │ │ This object does not have an…
1
vote
2 answers

Parsing NSG Flowlogs in Azure Log Analytics Workspace to separate Public IP addresses

I have been updating a KQL query for use in reviewing NSG Flow Logs to separate the columns for Public/External IP addresses. However the data within each cell of the column contains additional information that needs to be parsed out so my excel…
1
vote
1 answer

Azure Public IP Global vs Regional Tier

When creating a Public IP Adress in Azure i can choose the Tier between Regional and Global. We are using the IP Adress for Azure Application Gateway Standard_V2. When i want to use a Global Public IP for it's Frontend i get an error that only…
1
2 3 4