blob: daac91903d1919833106ae8b9b25ba44e26b4a70 [file] [log] [blame]
stark, steven6754bc12019-09-19 15:43:00 -07001#!/bin/bash
2# Copyright 2019 AT&T Intellectual Property. All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -x
17
18PUBLIC_IP_NAME=$1
19PUBLIC_IP_RESOURCE_GROUP=$2
20NIC_NAME=$3
21
22az network public-ip create --name "$PUBLIC_IP_NAME" \
23 --resource-group "$PUBLIC_IP_RESOURCE_GROUP"
24
25az network nic ip-config update --name "ipconfig1" \
26 --resource-group "$PUBLIC_IP_RESOURCE_GROUP" \
27 --nic-name "$NIC_NAME" \
28 --public-ip-address "$PUBLIC_IP_NAME"