pulumi-terraform 6.1.0a1766102495__tar.gz → 6.1.0a1768544675__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/PKG-INFO +3 -3
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/__init__.py +1 -1
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/provider.py +2 -2
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/pulumi-plugin.json +1 -1
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/state/__init__.py +1 -1
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/state/_inputs.py +13 -14
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/state/get_local_reference.py +10 -11
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/state/get_remote_reference.py +14 -15
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform.egg-info/PKG-INFO +3 -3
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform.egg-info/requires.txt +2 -2
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pyproject.toml +2 -2
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/README.md +0 -0
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/_utilities.py +0 -0
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/py.typed +0 -0
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform.egg-info/SOURCES.txt +0 -0
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform.egg-info/dependency_links.txt +0 -0
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform.egg-info/top_level.txt +0 -0
- {pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_terraform
|
|
3
|
-
Version: 6.1.
|
|
3
|
+
Version: 6.1.0a1768544675
|
|
4
4
|
Summary: The Terraform provider for Pulumi lets you consume the outputs contained in Terraform state from your Pulumi programs.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|
|
@@ -9,9 +9,9 @@ Keywords: terraform,kind/native,category/utility
|
|
|
9
9
|
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
# Pulumi Terraform Provider
|
|
17
17
|
|
{pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/__init__.py
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
from . import _utilities
|
|
7
7
|
import typing
|
|
8
8
|
# Export this package's modules as members:
|
{pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/provider.py
RENAMED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -26,6 +25,7 @@ class ProviderArgs:
|
|
|
26
25
|
pass
|
|
27
26
|
|
|
28
27
|
|
|
28
|
+
@pulumi.type_token("pulumi:providers:terraform")
|
|
29
29
|
class Provider(pulumi.ProviderResource):
|
|
30
30
|
@overload
|
|
31
31
|
def __init__(__self__,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
5
|
+
import builtins as _builtins
|
|
6
6
|
from .. import _utilities
|
|
7
7
|
import typing
|
|
8
8
|
# Export this package's modules as members:
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -24,11 +23,11 @@ MYPY = False
|
|
|
24
23
|
|
|
25
24
|
if not MYPY:
|
|
26
25
|
class WorkspacesDict(TypedDict):
|
|
27
|
-
name: NotRequired[
|
|
26
|
+
name: NotRequired[_builtins.str]
|
|
28
27
|
"""
|
|
29
28
|
The full name of one remote workspace. When configured, only the default workspace can be used. This option conflicts with prefix.
|
|
30
29
|
"""
|
|
31
|
-
prefix: NotRequired[
|
|
30
|
+
prefix: NotRequired[_builtins.str]
|
|
32
31
|
"""
|
|
33
32
|
A prefix used in the names of one or more remote workspaces, all of which can be used with this configuration. The full workspace names are used in HCP Terraform, and the short names (minus the prefix) are used on the command line for Terraform CLI workspaces. If omitted, only the default workspace can be used. This option conflicts with name.
|
|
34
33
|
"""
|
|
@@ -38,39 +37,39 @@ elif False:
|
|
|
38
37
|
@pulumi.input_type
|
|
39
38
|
class Workspaces:
|
|
40
39
|
def __init__(__self__, *,
|
|
41
|
-
name: Optional[
|
|
42
|
-
prefix: Optional[
|
|
40
|
+
name: Optional[_builtins.str] = None,
|
|
41
|
+
prefix: Optional[_builtins.str] = None):
|
|
43
42
|
"""
|
|
44
|
-
:param
|
|
45
|
-
:param
|
|
43
|
+
:param _builtins.str name: The full name of one remote workspace. When configured, only the default workspace can be used. This option conflicts with prefix.
|
|
44
|
+
:param _builtins.str prefix: A prefix used in the names of one or more remote workspaces, all of which can be used with this configuration. The full workspace names are used in HCP Terraform, and the short names (minus the prefix) are used on the command line for Terraform CLI workspaces. If omitted, only the default workspace can be used. This option conflicts with name.
|
|
46
45
|
"""
|
|
47
46
|
if name is not None:
|
|
48
47
|
pulumi.set(__self__, "name", name)
|
|
49
48
|
if prefix is not None:
|
|
50
49
|
pulumi.set(__self__, "prefix", prefix)
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter
|
|
54
|
-
def name(self) -> Optional[
|
|
53
|
+
def name(self) -> Optional[_builtins.str]:
|
|
55
54
|
"""
|
|
56
55
|
The full name of one remote workspace. When configured, only the default workspace can be used. This option conflicts with prefix.
|
|
57
56
|
"""
|
|
58
57
|
return pulumi.get(self, "name")
|
|
59
58
|
|
|
60
59
|
@name.setter
|
|
61
|
-
def name(self, value: Optional[
|
|
60
|
+
def name(self, value: Optional[_builtins.str]):
|
|
62
61
|
pulumi.set(self, "name", value)
|
|
63
62
|
|
|
64
|
-
@property
|
|
63
|
+
@_builtins.property
|
|
65
64
|
@pulumi.getter
|
|
66
|
-
def prefix(self) -> Optional[
|
|
65
|
+
def prefix(self) -> Optional[_builtins.str]:
|
|
67
66
|
"""
|
|
68
67
|
A prefix used in the names of one or more remote workspaces, all of which can be used with this configuration. The full workspace names are used in HCP Terraform, and the short names (minus the prefix) are used on the command line for Terraform CLI workspaces. If omitted, only the default workspace can be used. This option conflicts with name.
|
|
69
68
|
"""
|
|
70
69
|
return pulumi.get(self, "prefix")
|
|
71
70
|
|
|
72
71
|
@prefix.setter
|
|
73
|
-
def prefix(self, value: Optional[
|
|
72
|
+
def prefix(self, value: Optional[_builtins.str]):
|
|
74
73
|
pulumi.set(self, "prefix", value)
|
|
75
74
|
|
|
76
75
|
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -32,7 +31,7 @@ class GetLocalReferenceResult:
|
|
|
32
31
|
raise TypeError("Expected argument 'outputs' to be a dict")
|
|
33
32
|
pulumi.set(__self__, "outputs", outputs)
|
|
34
33
|
|
|
35
|
-
@property
|
|
34
|
+
@_builtins.property
|
|
36
35
|
@pulumi.getter
|
|
37
36
|
def outputs(self) -> Mapping[str, Any]:
|
|
38
37
|
"""
|
|
@@ -50,15 +49,15 @@ class AwaitableGetLocalReferenceResult(GetLocalReferenceResult):
|
|
|
50
49
|
outputs=self.outputs)
|
|
51
50
|
|
|
52
51
|
|
|
53
|
-
def get_local_reference(path: Optional[
|
|
54
|
-
workspace_dir: Optional[
|
|
52
|
+
def get_local_reference(path: Optional[_builtins.str] = None,
|
|
53
|
+
workspace_dir: Optional[_builtins.str] = None,
|
|
55
54
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLocalReferenceResult:
|
|
56
55
|
"""
|
|
57
56
|
Access state from the local filesystem.
|
|
58
57
|
|
|
59
58
|
|
|
60
|
-
:param
|
|
61
|
-
:param
|
|
59
|
+
:param _builtins.str path: The path to the tfstate file. This defaults to "terraform.tfstate" relative to the root module by default.
|
|
60
|
+
:param _builtins.str workspace_dir: The path to non-default workspaces.
|
|
62
61
|
"""
|
|
63
62
|
__args__ = dict()
|
|
64
63
|
__args__['path'] = path
|
|
@@ -68,15 +67,15 @@ def get_local_reference(path: Optional[builtins.str] = None,
|
|
|
68
67
|
|
|
69
68
|
return AwaitableGetLocalReferenceResult(
|
|
70
69
|
outputs=pulumi.get(__ret__, 'outputs'))
|
|
71
|
-
def get_local_reference_output(path: Optional[pulumi.Input[Optional[
|
|
72
|
-
workspace_dir: Optional[pulumi.Input[Optional[
|
|
70
|
+
def get_local_reference_output(path: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
71
|
+
workspace_dir: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
73
72
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLocalReferenceResult]:
|
|
74
73
|
"""
|
|
75
74
|
Access state from the local filesystem.
|
|
76
75
|
|
|
77
76
|
|
|
78
|
-
:param
|
|
79
|
-
:param
|
|
77
|
+
:param _builtins.str path: The path to the tfstate file. This defaults to "terraform.tfstate" relative to the root module by default.
|
|
78
|
+
:param _builtins.str workspace_dir: The path to non-default workspaces.
|
|
80
79
|
"""
|
|
81
80
|
__args__ = dict()
|
|
82
81
|
__args__['path'] = path
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -33,7 +32,7 @@ class GetRemoteReferenceResult:
|
|
|
33
32
|
raise TypeError("Expected argument 'outputs' to be a dict")
|
|
34
33
|
pulumi.set(__self__, "outputs", outputs)
|
|
35
34
|
|
|
36
|
-
@property
|
|
35
|
+
@_builtins.property
|
|
37
36
|
@pulumi.getter
|
|
38
37
|
def outputs(self) -> Mapping[str, Any]:
|
|
39
38
|
"""
|
|
@@ -51,18 +50,18 @@ class AwaitableGetRemoteReferenceResult(GetRemoteReferenceResult):
|
|
|
51
50
|
outputs=self.outputs)
|
|
52
51
|
|
|
53
52
|
|
|
54
|
-
def get_remote_reference(hostname: Optional[
|
|
55
|
-
organization: Optional[
|
|
56
|
-
token: Optional[
|
|
53
|
+
def get_remote_reference(hostname: Optional[_builtins.str] = None,
|
|
54
|
+
organization: Optional[_builtins.str] = None,
|
|
55
|
+
token: Optional[_builtins.str] = None,
|
|
57
56
|
workspaces: Optional[Union['Workspaces', 'WorkspacesDict']] = None,
|
|
58
57
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRemoteReferenceResult:
|
|
59
58
|
"""
|
|
60
59
|
Access state from a remote backend.
|
|
61
60
|
|
|
62
61
|
|
|
63
|
-
:param
|
|
64
|
-
:param
|
|
65
|
-
:param
|
|
62
|
+
:param _builtins.str hostname: The remote backend hostname to connect to.
|
|
63
|
+
:param _builtins.str organization: The name of the organization containing the targeted workspace(s).
|
|
64
|
+
:param _builtins.str token: The token used to authenticate with the remote backend.
|
|
66
65
|
"""
|
|
67
66
|
__args__ = dict()
|
|
68
67
|
__args__['hostname'] = hostname
|
|
@@ -74,18 +73,18 @@ def get_remote_reference(hostname: Optional[builtins.str] = None,
|
|
|
74
73
|
|
|
75
74
|
return AwaitableGetRemoteReferenceResult(
|
|
76
75
|
outputs=pulumi.get(__ret__, 'outputs'))
|
|
77
|
-
def get_remote_reference_output(hostname: Optional[pulumi.Input[Optional[
|
|
78
|
-
organization: Optional[pulumi.Input[
|
|
79
|
-
token: Optional[pulumi.Input[Optional[
|
|
76
|
+
def get_remote_reference_output(hostname: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
77
|
+
organization: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
|
+
token: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
80
79
|
workspaces: Optional[pulumi.Input[Union['Workspaces', 'WorkspacesDict']]] = None,
|
|
81
80
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRemoteReferenceResult]:
|
|
82
81
|
"""
|
|
83
82
|
Access state from a remote backend.
|
|
84
83
|
|
|
85
84
|
|
|
86
|
-
:param
|
|
87
|
-
:param
|
|
88
|
-
:param
|
|
85
|
+
:param _builtins.str hostname: The remote backend hostname to connect to.
|
|
86
|
+
:param _builtins.str organization: The name of the organization containing the targeted workspace(s).
|
|
87
|
+
:param _builtins.str token: The token used to authenticate with the remote backend.
|
|
89
88
|
"""
|
|
90
89
|
__args__ = dict()
|
|
91
90
|
__args__['hostname'] = hostname
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_terraform
|
|
3
|
-
Version: 6.1.
|
|
3
|
+
Version: 6.1.0a1768544675
|
|
4
4
|
Summary: The Terraform provider for Pulumi lets you consume the outputs contained in Terraform state from your Pulumi programs.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|
|
@@ -9,9 +9,9 @@ Keywords: terraform,kind/native,category/utility
|
|
|
9
9
|
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
-
Requires-Dist: typing-extensions
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
16
16
|
# Pulumi Terraform Provider
|
|
17
17
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pulumi_terraform"
|
|
3
3
|
description = "The Terraform provider for Pulumi lets you consume the outputs contained in Terraform state from your Pulumi programs."
|
|
4
|
-
dependencies = ["parver>=0.2.1", "pulumi>=3.
|
|
4
|
+
dependencies = ["parver>=0.2.1", "pulumi>=3.165.0,<4.0.0", "semver>=2.8.1", "typing-extensions>=4.11,<5; python_version < \"3.11\""]
|
|
5
5
|
keywords = ["terraform", "kind/native", "category/utility"]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
requires-python = ">=3.9"
|
|
8
|
-
version = "6.1.
|
|
8
|
+
version = "6.1.0a1768544675"
|
|
9
9
|
[project.license]
|
|
10
10
|
text = "Apache-2.0"
|
|
11
11
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
{pulumi_terraform-6.1.0a1766102495 → pulumi_terraform-6.1.0a1768544675}/pulumi_terraform/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|