Arvancloud Provider
The Arvancloud provider is used to interact with resources provided by Arvancloud. The provider needs to be configured with the proper API key before it can be used.
Example Usage
terraform {
required_providers {
arvancloud = {
source = "arvancloud/arvancloud"
version = "0.1.0"
}
}
}
provider "arvancloud" {
api_key= "apikey xx"
}
# Create a arvancloud cloudlogs sink
resource "arvancloud_cloudlogs_sink" "example" {
# ...
}
Schema
Required
api_key
(String, Sensitive) The API key for the Arvancloud provider.