Created
February 22, 2021 17:55
-
-
Save recursivecodes/54983382c2d6d18d485b7e3fc5d4616c to your computer and use it in GitHub Desktop.
log.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Initializing provider plugins... | |
- Finding latest version of hashicorp/oci... | |
- Installing hashicorp/oci v4.12.0... | |
- Installed hashicorp/oci v4.12.0 (unauthenticated) | |
The following providers do not have any version constraints in configuration, | |
so the latest version was installed. | |
To prevent automatic upgrades to new major versions that may contain breaking | |
changes, we recommend adding version constraints in a required_providers block | |
in your configuration, with the constraint strings suggested below. | |
*hashicorp/oci: version = "~> 4.12.0" | |
Terraform has been successfully initialized! | |
You may now begin working with Terraform. Try running "terraform plan" to see | |
any changes that are required for your infrastructure. All Terraform commands | |
should now work. | |
If you ever set or change modules or backend configuration for Terraform, | |
rerun this command to reinitialize your working directory. If you forget, other | |
commands will detect it and remind you to do so if necessary. | |
Refreshing Terraform state in-memory prior to plan... | |
The refreshed state will be used to calculate this plan, but will not be | |
persisted to local or remote state storage. | |
------------------------------------------------------------------------ | |
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: | |
# oci_objectstorage_bucket.create_bucket will be created | |
+ resource "oci_objectstorage_bucket" "create_bucket" { | |
[removed for brevity]... | |
} | |
Plan: 1 to add, 0 to change, 0 to destroy. | |
------------------------------------------------------------------------ | |
This plan was saved to: <path hidden> | |
To perform exactly these actions, run the following command to apply: | |
terraform apply "<path hidden>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment