07 Jan 2026 12:50 PM
Hi -
I'm trying to terraform the configuration (only) for a salesforce extension in our dynatrace.
I'm getting this error on terraform apply
> Error: No write access for scope class tenant
I have config (Platform token, api token) with every permission.
I'm using
resource "dynatrace_hub_extension_config" "salesforce" {
name = "com.dynatrace.salesforce-extension"
value = file("${path.module}/salesforce-extension.json")
}
And the config itself looks like
{
"enabled": true,
"description": "Salesforce SIT",
"version": "2.4.7",
"activationContext": "REMOTE",
"pythonRemote": {
"endpoints": [
{
"name": "SIT",
"login_url": "other",
"log_level": "INFO",
... further config...(The config was exported out of the UI)
Is there some additional permission that I need to allow access?
As an aside, I used the export feature of the terraform provider, but it didn't seem to include the pre-existing hub configuration.
Solved! Go to Solution.
13 Jan 2026 01:10 PM
I finally fixed this - down to not having a ActiveGate group in the cofiguration.
Featured Posts