We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1135cbe commit a496abeCopy full SHA for a496abe
2 files changed
python-pulumi/src/ptd/__init__.py
@@ -350,7 +350,7 @@ class WorkloadConfig:
350
sites: typing.Mapping[str, SiteConfig]
351
true_name: str
352
tenant_name: str | None = dataclasses.field(default=None, kw_only=True) # Human-readable name for the tenant
353
- third_party_telemetry_enabled: bool = True
+ third_party_telemetry_enabled: bool = dataclasses.field(default=True, kw_only=True)
354
355
@property
356
def domain(self) -> str:
python-pulumi/src/ptd/pulumi_resources/tigera_operator.py
@@ -10,9 +10,9 @@ def __init__(
10
self,
11
name: str,
12
release: str,
13
+ *args,
14
version: str = "3.29.3",
15
third_party_telemetry_enabled: bool = True,
- *args,
16
**kwargs,
17
):
18
super().__init__(
0 commit comments