pulumi-django-azure 1.0.20__tar.gz → 1.0.21__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.
Potentially problematic release.
This version of pulumi-django-azure might be problematic. Click here for more details.
- {pulumi_django_azure-1.0.20/src/pulumi_django_azure.egg-info → pulumi_django_azure-1.0.21}/PKG-INFO +1 -1
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/pyproject.toml +2 -2
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure/django_deployment.py +4 -2
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21/src/pulumi_django_azure.egg-info}/PKG-INFO +1 -1
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/LICENSE +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/README.md +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/setup.cfg +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure/__init__.py +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure.egg-info/SOURCES.txt +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure.egg-info/dependency_links.txt +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure.egg-info/requires.txt +0 -0
- {pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pulumi-django-azure"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.21"
|
|
8
8
|
description = "Simply deployment of Django on Azure with Pulumi"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "Maarten Ureel", email = "maarten@youreal.eu" }]
|
|
@@ -27,7 +27,7 @@ Homepage = "https://gitlab.com/MaartenUreel/pulumi-django-azure"
|
|
|
27
27
|
|
|
28
28
|
[tool.poetry]
|
|
29
29
|
name = "pulumi-django-azure"
|
|
30
|
-
version = "1.0.
|
|
30
|
+
version = "1.0.21"
|
|
31
31
|
description = "Simply deployment of Django on Azure with Pulumi"
|
|
32
32
|
authors = ["Maarten Ureel <maarten@youreal.eu>"]
|
|
33
33
|
|
|
@@ -837,6 +837,7 @@ class DjangoDeployment(pulumi.ComponentResource):
|
|
|
837
837
|
repository_branch: str,
|
|
838
838
|
website_hosts: list[HostDefinition],
|
|
839
839
|
django_settings_module: str,
|
|
840
|
+
python_version: str = "3.13",
|
|
840
841
|
environment_variables: Optional[dict[str, str]] = None,
|
|
841
842
|
secrets: Optional[dict[str, str]] = None,
|
|
842
843
|
comms_data_location: Optional[str] = None,
|
|
@@ -854,6 +855,7 @@ class DjangoDeployment(pulumi.ComponentResource):
|
|
|
854
855
|
:param repository_branch: The Git branch to deploy.
|
|
855
856
|
:param website_hosts: The list of custom host names for the website.
|
|
856
857
|
:param django_settings_module: The Django settings module to load.
|
|
858
|
+
:param python_version: The Python version to use.
|
|
857
859
|
:param environment_variables: A dictionary of environment variables to set.
|
|
858
860
|
:param secrets: A dictionary of secrets to store in the Key Vault and assign as environment variables.
|
|
859
861
|
The key is the name of the Pulumi secret, the value is the name of the environment variable
|
|
@@ -957,9 +959,9 @@ class DjangoDeployment(pulumi.ComponentResource):
|
|
|
957
959
|
always_on=True,
|
|
958
960
|
health_check_path=self.HEALTH_CHECK_PATH,
|
|
959
961
|
ftps_state=azure.web.FtpsState.DISABLED,
|
|
960
|
-
python_version=
|
|
962
|
+
python_version=python_version,
|
|
961
963
|
# scm_type=azure.web.ScmType.EXTERNAL_GIT,
|
|
962
|
-
linux_fx_version="PYTHON|
|
|
964
|
+
linux_fx_version=f"PYTHON|{python_version}",
|
|
963
965
|
app_settings=[
|
|
964
966
|
# Build settings
|
|
965
967
|
azure.web.NameValuePairArgs(name="SCM_DO_BUILD_DURING_DEPLOYMENT", value="true"),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pulumi_django_azure-1.0.20 → pulumi_django_azure-1.0.21}/src/pulumi_django_azure/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|