以下の内容はhttps://htn20190109.hatenablog.com/entry/2025/07/31/004543より取得しました。


OCIボリュームバックアップ取得シェル

 


cat <<-'EOF' > oci_volume_backup.sh
#!/bin/bash

VMMEI=$1
ADMEI=$2
COMPARTMENTMEI=$3

echo "[$(date '+%Y/%m/%d %H:%M:%S')] job start" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log

echo ${VMMEI}
echo ${ADMEI}
echo ${COMPARTMENTMEI}


# 1 コンパートメント名→コンパートメントID取得
COMPARTMENTID=$(oci iam compartment list \
--query 'data[?"name"==`'${COMPARTMENTMEI}'`].id | [0]' \
--raw-output)

echo ${COMPARTMENTID}


# 2 インスタンス名→インスタンスID取得

VMID=$(oci compute instance list \
--compartment-id ${COMPARTMENTID} \
--query 'data[?"display-name"==`'${VMMEI}'`].id | [0]' \
--raw-output)

echo ${VMID}


# 3 ボリュームID取得

VOLID=$(oci compute boot-volume-attachment list \
--availability-domain ${ADMEI} \
--compartment-id ${COMPARTMENTID} \
--instance-id ${VMID} \
--query 'data[]."boot-volume-id" | [0]' \
--raw-output)

echo ${VOLID}


# 4 インスタンス停止
oci compute instance action \
--instance-id ${VMID} \
--action stop \
--wait-for-state STOPPED \
--wait-interval-seconds 10

RET=$?
if [ ${RET} -ne 0 ] ; then
  echo "[$(date '+%Y/%m/%d %H:%M:%S')] instance stop error (${VMMEI} ${ADMEI} ${COMPARTMENTMEI} )" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
  exit 100
else
  echo "[$(date '+%Y/%m/%d %H:%M:%S')] instance stop done (${VMMEI} ${ADMEI} ${COMPARTMENTMEI} )" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
fi

# 5 ボリュームバックアップ取得
oci bv boot-volume-backup create \
--boot-volume-id ${VOLID} \
--display-name  bk_vm11_$(date "+%Y%m%d_%H%M%S") \
--type FULL \
--wait-for-state AVAILABLE \
--wait-interval-seconds 10

RET=$?
if [ ${RET} -ne 0 ] ; then
  echo "[$(date '+%Y/%m/%d %H:%M:%S')] volume backup error(${VMMEI} ${ADMEI} ${COMPARTMENTMEI} )" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
  exit 100
else
  echo "[$(date '+%Y/%m/%d %H:%M:%S')] volume backup done (${VMMEI} ${ADMEI} ${COMPARTMENTMEI} )" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
fi

# 6 インスタンス起動

oci compute instance action \
--instance-id ${VMID} \
--action start \
--wait-for-state RUNNING \
--wait-interval-seconds 10


RET=$?
if [ ${RET} -ne 0 ] ; then
  echo "[$(date '+%Y/%m/%d %H:%M:%S')] instance start error(${VMMEI} ${ADMEI} ${COMPARTMENTMEI} )" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
  exit 100
else
  echo "[$(date '+%Y/%m/%d %H:%M:%S')] instance start done (${VMMEI} ${ADMEI} ${COMPARTMENTMEI} )" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
fi

 

echo "[$(date '+%Y/%m/%d %H:%M:%S')] job end" | tee -a  /tmp/oci_volume_backup_$(date '+%Y%m').log
exit 0

EOF

 

cat oci_volume_backup.sh
chmod +x oci_volume_backup.sh


./oci_volume_backup.sh vm11 OEIw:US-ASHBURN-AD-1 cmp01

cat /tmp/oci_volume_backup_$(date '+%Y%m').log

 

================================

--  VCN、コンピュートインスタンス1個作成

cat <<-'EOF' > variables.tf

locals {
  tenancy_ocid = "ocid1.tenancy.oc1..111111111111111111111111111111111111111111111111111111111111"

}

variable "compartment_name" {
  description = "compartment_name"
  type = string
  default = "cmp01"
}

EOF

 

cat <<-'EOF' > main.tf

terraform {
  required_version = ">= 1.0.0, < 2.0.0"
  required_providers {
    oci = {
       source  = "hashicorp/oci"
       version = "= 5.23.0"
    }
  }
}

provider "oci" {
  tenancy_ocid = local.tenancy_ocid
  user_ocid = "ocid1.user.oc1..111111111111111111111111111111111111111111111111111111111111" 
  private_key_path = "~/.oci/oci_api_key.pem"
  fingerprint = "45:ed:22:e6:cc:fd:63:97:12:9d:62:7a:90:12:65:7a"
  region = "us-ashburn-1"
}


resource "oci_identity_compartment" "cmp01" {
    # Required
    compartment_id = local.tenancy_ocid
    description = var.compartment_name
    name = var.compartment_name
    
    enable_delete = true
}

resource "oci_core_vcn" "vcn01" {
    #Required
    compartment_id = oci_identity_compartment.cmp01.id

    #Optional
    cidr_block = "10.0.0.0/16"
    display_name = "vcn01"
    dns_label = "vcn01"

}


resource "oci_core_internet_gateway" "igw01" {
    #Required
    compartment_id = oci_identity_compartment.cmp01.id
    vcn_id = oci_core_vcn.vcn01.id

    #Optional
    enabled = true
    display_name = "igw01"
}

resource "oci_core_route_table" "rt01" {
    #Required
    compartment_id = oci_identity_compartment.cmp01.id
    vcn_id = oci_core_vcn.vcn01.id

    #Optional
    display_name = "rt01"
    route_rules {
        #Required
        network_entity_id = oci_core_internet_gateway.igw01.id
        #Optional
        destination = "0.0.0.0/0"
    }
    
}


resource "oci_core_security_list" "sl01" {
    #Required
    compartment_id = oci_identity_compartment.cmp01.id
    vcn_id = oci_core_vcn.vcn01.id

    #Optional
    display_name = "sl01"
    
    egress_security_rules {
        destination = "0.0.0.0/0"
        protocol = "all"
        stateless = false
    }
    
    ingress_security_rules {
        protocol = "6"
        source = "0.0.0.0/0"
        stateless = false
        tcp_options {
            max = 22
            min = 22
        }
    }
}

 

resource "oci_core_subnet" "subnet01" {
    #Required
    cidr_block = "10.0.1.0/24"
    compartment_id = oci_identity_compartment.cmp01.id
    vcn_id = oci_core_vcn.vcn01.id

    #Optional

    display_name = "subnet01"
    dns_label = "subnet01"
    route_table_id = oci_core_route_table.rt01.id
    security_list_ids = [oci_core_security_list.sl01.id]
}

resource "oci_core_subnet" "subnet02" {
    #Required
    cidr_block = "10.0.2.0/24"
    compartment_id = oci_identity_compartment.cmp01.id
    vcn_id = oci_core_vcn.vcn01.id

    #Optional

    display_name = "subnet02"
    dns_label = "subnet02"
    route_table_id = oci_core_route_table.rt01.id
    security_list_ids = [oci_core_security_list.sl01.id]
}


resource "oci_core_nat_gateway" "ngw01" {
    #Required
    compartment_id = oci_identity_compartment.cmp01.id
    vcn_id = oci_core_vcn.vcn01.id

    #Optional
    block_traffic = false
    display_name = "ngw01"
}


data "oci_core_services" "svc01" {
  filter {
    name   = "name"
    values = ["All .* Services In Oracle Services Network"]
    regex  = true
  }
}


resource "oci_core_service_gateway" "sgw01" {
    #Required
    compartment_id = oci_identity_compartment.cmp01.id
    services {
        #Required
        service_id = data.oci_core_services.svc01.services.0.id
    }
    vcn_id = oci_core_vcn.vcn01.id

    #Optional
    display_name = "sgw01"
}


EOF

 

cat <<-'EOF' > outputs.tf

output "cmp01_id" {
  value = oci_identity_compartment.cmp01.id
  description = "cmp01.id"
}

output "vcn01_id" {
  value = oci_core_vcn.vcn01.id
  description = "vcn01.id"
}

output "igw01_id" {
  value = oci_core_internet_gateway.igw01.id
  description = "igw01.id"
}
output "rt01_id" {
  value = oci_core_route_table.rt01.id
  description = "rt01.id"
}

output "sl01_id" {
  value = oci_core_security_list.sl01.id
  description = "sl01.id"
}

output "subnet01_id" {
  value = oci_core_subnet.subnet01.id
  description = "subnet01.id"
}
output "subnet02_id" {
  value = oci_core_subnet.subnet02.id
  description = "subnet02.id"
}

output "ngw01_id" {
  value = oci_core_nat_gateway.ngw01.id
  description = "ngw01.id"
}

output "svc01_id" {
  value = data.oci_core_services.svc01.services.0.id
  description = "svc01.id"
}

output "sgw01_id" {
  value = oci_core_service_gateway.sgw01.id
  description = "sgw01.id"
}

EOF

 

# インスタンス(always free)
# Canonical-Ubuntu-22.04-aarch64-2023.10.13-0
# VM.Standard.A1.Flex


cat <<-'EOF' > instance.tf


resource "oci_core_instance" "vm11" {
    #Required
    availability_domain = "OEIw:US-ASHBURN-AD-1"
    compartment_id = oci_identity_compartment.cmp01.id
    shape = "VM.Standard.A1.Flex"

    shape_config {

        memory_in_gbs = 6
        ocpus = 1
    }
    
    #Optional

    create_vnic_details {
        #Optional
        assign_public_ip = true
        subnet_id = oci_core_subnet.subnet01.id
    }

    display_name = "vm11"

    metadata = {
        ssh_authorized_keys = file("~/.ssh/id_rsa.pub")
    } 

    source_details {
        #Required
        source_id = "ocid1.image.oc1.iad.aaaaaaaamphrdqdgcjfdmo5fzql4m6ewcuxkbepjbobgky254svsk3ueppfa"
        source_type = "image"

        #Optional
        boot_volume_size_in_gbs = 50
    }
    preserve_boot_volume = false
}

 


EOF

 

 


terraform init
terraform fmt
terraform -version

export TF_VAR_compartment_name=cmp01


terraform plan

 

terraform apply -auto-approve

 

 

terraform destroy -auto-approve

 

================================

 

 




以上の内容はhttps://htn20190109.hatenablog.com/entry/2025/07/31/004543より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14