-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
awaiting-upstreamThe issue cannot be resolved without action in another repository (may be owned by Pulumi).The issue cannot be resolved without action in another repository (may be owned by Pulumi).impact/regressionSomething that used to work, but is now brokenSomething that used to work, but is now brokenkind/bugSome behavior is incorrect or out of specSome behavior is incorrect or out of specp1A bug severe enough to be the next item assigned to an engineerA bug severe enough to be the next item assigned to an engineerresolution/fixedThis issue was fixedThis issue was fixed
Description
Describe what happened
As ZoneSettingsOverride is discontinued in provider version 6.x, I'm trying to migrate to ZoneSetting instead, but get the error when running pulumi preview:
error: [pf/tfbridge] Error calling NewRawState: AttributeName("value"): DynamicPseudoType is not yet supported
Sample program
name: example-com
runtime: yaml
description: Manage zones and records belong to example.com domain
variables: {}
resources:
cloudflare-provider:
type: pulumi:providers:cloudflare
defaultProvider: true
options:
version: 6.2.0
zone:
type: cloudflare:Zone
properties:
name: example.com
account:
id:
alwaysusehttps:
type: cloudflare:ZoneSetting
properties:
settingId: always_use_https
value: on
zoneId: ${zone.id}
mintlsversion:
type: cloudflare:ZoneSetting
properties:
settingId: min_tls_version
value: '1.2'
zoneId: ${zone.id}
tls13:
type: cloudflare:ZoneSetting
properties:
settingId: tls_1_3
value: on
zoneId: ${zone.id}
ssl:
type: cloudflare:ZoneSetting
properties:
settingId: ssl
value: strict
zoneId: ${zone.id}
securitylevel:
type: cloudflare:ZoneSetting
properties:
settingId: security_level
value: medium
zoneId: ${zone.id}Log output
cloudflare:index:ZoneSetting (alwaysusehttps):
error: [pf/tfbridge] Error calling NewRawState: AttributeName("value"): DynamicPseudoType is not yet supported
Affected Resource(s)
- ZoneSetting
Output of pulumi about
CLI
Version 3.170.0
Go Version go1.24.3
Go Compiler gc
Plugins
KIND NAME VERSION
resource cloudflare 6.2.0
language yaml 1.19.0
Host
OS darwin
Version 15.5
Arch arm64
This project is written in yaml
Dependencies:
NAME VERSION
cloudflare 6.2.0
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
Metadata
Metadata
Assignees
Labels
awaiting-upstreamThe issue cannot be resolved without action in another repository (may be owned by Pulumi).The issue cannot be resolved without action in another repository (may be owned by Pulumi).impact/regressionSomething that used to work, but is now brokenSomething that used to work, but is now brokenkind/bugSome behavior is incorrect or out of specSome behavior is incorrect or out of specp1A bug severe enough to be the next item assigned to an engineerA bug severe enough to be the next item assigned to an engineerresolution/fixedThis issue was fixedThis issue was fixed