diff --git a/linode/.gitignore b/linode/.gitignore deleted file mode 100644 index a3807e5..0000000 --- a/linode/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pyc -venv/ diff --git a/linode/Pulumi.yaml b/linode/Pulumi.yaml deleted file mode 100644 index 427e78b..0000000 --- a/linode/Pulumi.yaml +++ /dev/null @@ -1,5 +0,0 @@ -name: ${PROJECT} -description: ${DESCRIPTION} -runtime: python -template: - description: A Pulumi deployment with Linode cloud and Python diff --git a/linode/__main__.py b/linode/__main__.py deleted file mode 100644 index bcc9613..0000000 --- a/linode/__main__.py +++ /dev/null @@ -1,25 +0,0 @@ -"""A Linode Python Pulumi program""" - -import pulumi -import pulumi_linode -import yaml -from dotmap import DotMap - -conf = DotMap(yaml.safe_load(open("input.yaml").read())) -config = pulumi.Config() - -# Create a Linode resource (Linode Instance) -instance = pulumi_linode.Instance('my-instance', - type=config.linode.type, - region=config.linode.region, - image=config.linode.image, - label=config.vm.name, - root_pass=config.vm.root_password, - authorized_keys=config.vm.sshkeys - opts=pulumi.ResourceOptions( - custom_timeouts=pulumi.CustomTimeouts(create="2m") - ) -) - -# Export the Instance label of the instance -pulumi.export('ip_address', instance.ip_address) diff --git a/linode/input.yaml b/linode/input.yaml deleted file mode 100644 index f41d70d..0000000 --- a/linode/input.yaml +++ /dev/null @@ -1,14 +0,0 @@ ---- -linode: - type: g6-nanode-1 - region: eu-central - image: linode/debian12 - -# Basic VM configuration -vm: - name: linode-test - root_password: cicciopasticcio - sshkeys: - - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFioHkaV1NhX6NCqsJakJw8EVBOcDHm1MEbpY499CPtG syntaxerrormmm@fisso" - - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILu91hBh8pNRt4eE1pug0Y4jCHZDCcMJ+vj3CiF5EQHV syntaxerrormmm@syntaxxps" - - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILH5q/ObtC4VhNT88gebezP/svpvCoQLoZCh4DvUn4xq syntaxerrormmm@taz" diff --git a/linode/requirements.txt b/linode/requirements.txt deleted file mode 100644 index f05c2d8..0000000 --- a/linode/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -pulumi>=3.0.0,<4.0.0 -pulumi-linode>=4.0.0,<5.0.0 -pyyaml>=6.0 -dotmap>=1.3.30 diff --git a/pvm-ansible/__main__.py b/pvm-ansible/__main__.py index 0249be8..13dc43e 100644 --- a/pvm-ansible/__main__.py +++ b/pvm-ansible/__main__.py @@ -14,10 +14,12 @@ i.close() config = pulumi.Config() provider = proxmox.Provider("proxmoxve", - endpoint=input_['pve']['url'], - insecure=input_['pve']['insecure'], - username=input_['pve']['username'], - password=config.require_secret("password") + virtual_environment = { + "endpoint": input_['pve']['url'], + "insecure": input_['pve']['insecure'], + "username": input_['pve']['username'], + "password": config.require_secret("password") + } ) vm_name = input_['vm']['name'] @@ -73,8 +75,7 @@ vm = proxmox.vm.VirtualMachine("vm", ) ), opts = pulumi.ResourceOptions( - provider = provider, - custom_timeouts=pulumi.CustomTimeouts(create="3m") + provider = provider ) ) diff --git a/pvm/__main__.py b/pvm/__main__.py index 825c782..8379a7d 100644 --- a/pvm/__main__.py +++ b/pvm/__main__.py @@ -1,9 +1,9 @@ """A ProxmoxVE VM template with Python""" -import pulumi -import pulumi_proxmoxve as proxmox import yaml from dotmap import DotMap +import pulumi +import pulumi_proxmoxve as proxmox conf = DotMap(yaml.safe_load(open("input.yaml").read())) config = pulumi.Config() @@ -63,8 +63,7 @@ vm = proxmox.vm.VirtualMachine(conf.vm.name, ) ), opts = pulumi.ResourceOptions( - provider = provider, - custom_timeouts=pulumi.CustomTimeouts(create="3m") + provider = provider ) )