Registry /
devops / cdktf-cdktf-provider-null
Install & Compatibility
Where this runs
tested against v11.0.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 27.4MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 3.2s · import 0.000s · 28MB
26MB installed
● package 26MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
NullProvider
✓ from cdktf_cdktf_provider_null import provider
✗ from cdktf_cdktf_provider_null import NullProvider
DataNullDataSource
✓ from cdktf_cdktf_provider_null import data_null_data_source
✗ from cdktf_cdktf_provider_null import DataNullDataSource
Resource
✓ from cdktf_cdktf_provider_null import resource
✗ from cdktf_cdktf_provider_null import Resource
Synthesizes a minimal CDKTF stack with a null resource.
from cdktf import App, TerraformStack
from cdktf_cdktf_provider_null import NullProvider, NullResource
class MyStack(TerraformStack):
def __init__(self, scope, id):
super().__init__(scope, id)
NullProvider(self, 'null', alias='myprovider')
NullResource(self, 'example', triggers={'key': 'value'})
app = App()
MyStack(app, 'quickstart')
app.synth()
Upgrade
Version history
11.0.1latest on PyPI · released Dec 10, 2025
Audit
Dependencies
cdktfrequiredRuntime dependency for CDKTF constructs
constructsrequiredBase constructs library
jsiirequiredCross-language type system used by CDKTF