Provides a managed S3-compatible object storage solution for storing and retrieving any amount of data from anywhere on the web.
Provides a Vultr private object storage resource. This can be used to create, read, update and delete object storage resources on your Vultr account.
Create a new object storage subscription.
resource "vultr_object_storage" "tf" {
cluster_id = 9
tier_id = 4
label = "vultr-object-storage"
}
The following arguments are supported:
cluster_id
- (Required) The ID of the region that you want the object storage to be deployed in.tier_id
- (Required) The ID of the tier to deploy the storage under.label
- (Optional) The description you want to give your object storage.The following attributes are exported:
id
- The id of the object storage subscription.label
- The label of the object storage subscription.location
- The location which this subscription resides in.cluster_id
- The identifying cluster ID.region
- The region ID of the object storage subscription.s3_access_key
- Your access key.s3_hostname
- The hostname for this subscription.s3_secret_key
- Your secret key.status
- Current status of this object storage subscription.date_created
- Date of creation for the object storage subscription.Object Storage can be imported using the object storage ID
, e.g.
terraform import vultr_object_storage.my_s3 0e04f918-575e-41cb-86f6-d729b354a5a1
No comments yet.