Questions tagged [azure-public-ip]
50 questions
1
vote
1 answer
Is it possible to assign public static IPs to individual VMs in Azure VMSS?
There is a document describing how to allocate a public IP per VM in VMSS: https://learn.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-networking#public-ipv4-per-virtual-machine
But it is not clear how to assign…

ZakiMa
- 5,637
- 1
- 24
- 48
1
vote
1 answer
How can I update ip_configuration of an azurerm_network_interface to add azurerm_public_ip?
I have created an HDInsight cluster with kafka using azurerm_hdinsight_kafka_cluster on a VNet (azurerm_virtual_network) with terraform. Due to which I get instances of Azure's network interface created implicitly by Azure Management Service.
I have…

Dishant Kamble
- 239
- 2
- 4
- 11
1
vote
4 answers
Create VM in Azure with powershell with no public IP
I'm creating VM on Azure from an Image using powershell.
This is the script I'm using .
$UserName = "username"
$Password = ConvertTo-SecureString "password@123" -AsPlainText -Force
$psCred = New-Object…

CrazyCoder
- 2,194
- 10
- 44
- 91
0
votes
1 answer
How to Add static public IP adress to a kubernetes/nginx ingress controller in an AKS cluster without helm
I have an Azure Kubernetes Service cluster and created a public IP address via:
az network public-ip create --resource-group MC_myResourceGroup_myAKSCluster_eastus --name myAKSPublicIP --sku Standard --allocation-method static --query…

Jens Voorpyl
- 30
- 6
0
votes
1 answer
How to check if Azure public IP is 'associated' via Python SDK
I am trying to get a list of Public IP addresses that are not associated to any azure resource. That is 'orphaned public ip addresses'. I want to know if Azure public IP is 'associated' via Python SDK.
Using the below SDK:
from azure.mgmt.network…

Manjunath Rao
- 1,397
- 4
- 26
- 42
0
votes
1 answer
Adding custom domain to App gateway in load balancer
I need your help in understanding how we can create custom domain for app gateway in azure.
I read this post Custom domain for Azure application gateway, but I am not clear and have some follow up queries.
Sorry, I couldn't ask in the comment of…

jatin
- 21
- 3
0
votes
1 answer
How to setup Azure Traffic Manager to talk to Service Fabric Cluster
I currently have the following setup for a Service Fabric Cluster that I am running. This is simplified for the sake of understanding:
What I am currently trying to do is set up an Azure Traffic Manager where the HTTPS requests will go through, and…

SVCS1994
- 213
- 1
- 3
- 14
0
votes
0 answers
Azure public ip https
I have Azure public IP, that points to Azure Container instances. For this I'm using load balancer:
this is my in-bound rule:
Backend pool:
I can navigate to http://40.68.242.95/ and see, that my website is working. How can I configure https…

Anna Melashkina
- 422
- 2
- 13
0
votes
1 answer
How to configure Application Gateway in Azure for different ports on the same IP address
I've been working on a project in Azure in which I'd like some help. I have two different VMs running the same project on containers. The first VM has the server of the application and it has a frontend. Also, this VM has a keycloak container. When…

Cesar Carr
- 3
- 1
0
votes
0 answers
Azure Public LB in front of YARP on AppService
I'm trying to use YARP (on an app service) as app gateway in front of my App Services. For this I tried the following:
create a virtual netwerk / subnet default
create app service, install test app (later Yarp)
create an private endpoint on the app…

Paul0515
- 23,515
- 9
- 32
- 47
0
votes
2 answers
How to find and Delete orphan public ip in azure using powershell
How to list and remove unused (orphanip) public ip address "such as search if the ip is not associated to any Vm or Networkinterface card find and then delete" in azure using powershell azure automation runbook.
Getting this error "Method…

DSH
- 69
- 1
- 8
0
votes
1 answer
Terraform: How to retrieve the aks managed outbound ip
In an aks managed slb for standard sku, azure assigns a public ip automatically.
The name of this public ip is auto generated but has the following tags
"tags": {
"aks-managed-type": "aks-slb-managed-outbound-ip"
},
Im unable to…

Nishaero
- 7
- 4
0
votes
0 answers
Forward HTTP request from Azure Public IP port 80 to internet ip with different port
Let's suppose we have the following scenario:
an on premise server with a public IP (aa.bb.cc.dd) and an application listening on a specific port (8081). port 80 is already used by another app.
an external application that send HTTP requests to an…

Sierrodc
- 845
- 6
- 18
0
votes
1 answer
Causes for Application Gateway Connection Timeout
Greeetings,
I have the following setup
Application Gateway -- Private Endpoints -- App Services
The application gateway is in its own resource group along with the virtual network in the 1.0.0.0 subnet.
The private endpoints and app services have a…

Christopher C
- 1
- 1
- 2
0
votes
1 answer
Is it possible to create a public ip with specific IP address?
For some reason we need to use a specific IP, let's say, 123.456.789.112
Is it possible to create a public IP with this IP address 123.456.789.112?

Helen Lau
- 3
- 1