mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
cleanup; sane defaults
This commit is contained in:
parent
34d0c450ff
commit
9a7e42459b
@ -18,6 +18,7 @@ before_deploy:
|
||||
- export KEY=$(cat /dev/urandom | tr -cd 'a-z' | head -c 12)
|
||||
- export PASSWORD=$KEY$(cat /dev/urandom | tr -cd 'A-Z' | head -c 2)$(cat /dev/urandom | tr -cd '0-9' | head -c 2)
|
||||
|
||||
|
||||
# terraform deploy script
|
||||
deploy:
|
||||
- provider: script
|
||||
@ -27,5 +28,9 @@ deploy:
|
||||
repo: 10thmagnitude/terraform
|
||||
branch: topic-101-vm-simple-linux
|
||||
|
||||
# TODO: possibly use Azure CLI to delete the resource group
|
||||
after_deploy: docker run --rm -it azuresdk/azure-cli-python sh -c "az login --service-principal -u $ARM_CLIENT_ID -p $ARM_CLIENT_SECRET --tenant $ARM_TENANT_ID; az group delete -y -n $KEY"
|
||||
# destroy resources with Azure CLI
|
||||
after_deploy:
|
||||
- docker run --rm -it \
|
||||
azuresdk/azure-cli-python \
|
||||
sh -c "az login --service-principal -u $ARM_CLIENT_ID -p $ARM_CLIENT_SECRET --tenant $ARM_TENANT_ID; \
|
||||
az group delete -y -n $KEY"
|
||||
|
14
examples/azure-vm-simple-linux/deploy.mac.sh
Executable file
14
examples/azure-vm-simple-linux/deploy.mac.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -o errexit -o nounset
|
||||
|
||||
# generate a unique string for CI deployment
|
||||
export KEY=$(cat /dev/urandom | env LC_CTYPE=C tr -cd 'a-z' | head -c 12)
|
||||
export PASSWORD=$KEY$(cat /dev/urandom | env LC_CTYPE=C tr -cd 'A-Z' | head -c 2)$(cat /dev/urandom | env LC_CTYPE=C tr -cd '0-9' | head -c 2)
|
||||
|
||||
/bin/sh ./deploy.sh
|
||||
|
||||
# docker run --rm -it \
|
||||
# azuresdk/azure-cli-python \
|
||||
# sh -c "az login --service-principal -u $ARM_CLIENT_ID -p $ARM_CLIENT_SECRET --tenant $ARM_TENANT_ID; \
|
||||
# az group delete -y -n $KEY"
|
@ -2,10 +2,6 @@
|
||||
|
||||
set -o errexit -o nounset
|
||||
|
||||
# generate a unique string for CI deployment
|
||||
# KEY=$(cat /dev/urandom | tr -cd 'a-z' | head -c 12)
|
||||
# PASSWORD=$KEY$(cat /dev/urandom | tr -cd 'A-Z' | head -c 2)$(cat /dev/urandom | tr -cd '0-9' | head -c 2)
|
||||
|
||||
docker run --rm -it \
|
||||
-e ARM_CLIENT_ID \
|
||||
-e ARM_CLIENT_SECRET \
|
||||
@ -14,26 +10,8 @@ docker run --rm -it \
|
||||
-v $(pwd):/data \
|
||||
--entrypoint "/bin/sh" \
|
||||
hashicorp/terraform:light \
|
||||
-c "cd /data; /bin/terraform get; /bin/terraform plan -var dns_name=$KEY -var resource_group=$KEY -var admin_username=$KEY -var admin_password=$PASSWORD -out=out.tfplan; /bin/terraform apply out.tfplan"
|
||||
|
||||
# TODO: determine external validation, possibly Azure CLI
|
||||
|
||||
# echo "Setting git user name"
|
||||
# git config user.name $GH_USER_NAME
|
||||
#
|
||||
# echo "Setting git user email"
|
||||
# git config user.email $GH_USER_EMAIL
|
||||
#
|
||||
# echo "Adding git upstream remote"
|
||||
# git remote add upstream "https://$GH_TOKEN@github.com/$GH_REPO.git"
|
||||
#
|
||||
# git checkout master
|
||||
|
||||
|
||||
#
|
||||
# NOW=$(TZ=America/Chicago date)
|
||||
#
|
||||
# git commit -m "tfstate: $NOW [ci skip]"
|
||||
#
|
||||
# echo "Pushing changes to upstream master"
|
||||
# git push upstream master
|
||||
-c "cd /data; \
|
||||
/bin/terraform get; \
|
||||
/bin/terraform validate; \
|
||||
/bin/terraform plan -out=out.tfplan -var dns_name=$KEY -var hostname=$KEY -var resource_group=$KEY -var admin_password=$PASSWORD; \
|
||||
/bin/terraform apply out.tfplan"
|
||||
|
@ -18,9 +18,9 @@ resource "azurerm_subnet" "subnet" {
|
||||
}
|
||||
|
||||
resource "azurerm_network_interface" "nic" {
|
||||
name = "${var.rg_prefix}nic"
|
||||
location = "${var.location}"
|
||||
resource_group_name = "${azurerm_resource_group.rg.name}"
|
||||
name = "${var.rg_prefix}nic"
|
||||
location = "${var.location}"
|
||||
resource_group_name = "${azurerm_resource_group.rg.name}"
|
||||
|
||||
ip_configuration {
|
||||
name = "${var.rg_prefix}ipconfig"
|
@ -3,5 +3,4 @@ rg_prefix = "rg"
|
||||
hostname = "myvm"
|
||||
dns_name = "mydnsname"
|
||||
location = "southcentralus"
|
||||
admin_username = "vmadmin"
|
||||
admin_password = "T3rr@f0rmP@ssword"
|
||||
|
@ -4,6 +4,7 @@ variable "resource_group" {
|
||||
|
||||
variable "rg_prefix" {
|
||||
description = "The shortened abbreviation to represent your resource group that will go on the front of some resources."
|
||||
default = "rg"
|
||||
}
|
||||
|
||||
variable "hostname" {
|
||||
@ -16,6 +17,7 @@ variable "dns_name" {
|
||||
|
||||
variable "location" {
|
||||
description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
|
||||
default = "southcentralus"
|
||||
}
|
||||
|
||||
variable "virtual_network_name" {
|
||||
@ -65,6 +67,7 @@ variable "image_version" {
|
||||
|
||||
variable "admin_username" {
|
||||
description = "administrator user name"
|
||||
default = "vmadmin"
|
||||
}
|
||||
|
||||
variable "admin_password" {
|
||||
|
Loading…
Reference in New Issue
Block a user