Skip to content

Latest commit

 

History

History
 
 

task-000-initialization-setup

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Initialization Setup

Initialization

  • Version
╰─ terraform -version
Terraform v1.1.9
on darwin_arm64
  • Create tfvars file and note it's location
╰─ cat terraform.tfvars           
TF_VAR_TENANCY_OCID="****************************"
TF_VAR_USER_OCID="*****************************"
TF_VAR_PRIVATE_KEY_PATH="*****************"
TF_VAR_FINGERPRINT="******************"
TF_VAR_REGION="***************"
  • Terraform init, plan, apply
╰─ terraform init


╰─ terraform plan -var-file=$OCI_TFVARS_LOCATION/terraform.tfvars

No changes. Your infrastructure matches the configuration.

Terraform has compared your real infrastructure against your
configuration and found no differences, so no changes are needed


╰─ terraform apply -var-file=$OCI_TFVARS_LOCATION/terraform.tfvars

No changes. Your infrastructure matches the configuration.

Terraform has compared your real infrastructure against your
configuration and found no differences, so no changes are needed.

Apply complete! Resources: 0 added, 0 changed, 0 destroyed.