diff --git a/docs/guides/uptime/loadbalancing/how-to-configure-haproxy-http-load-balancing-and-health-checks/index.md b/docs/guides/uptime/loadbalancing/how-to-configure-haproxy-http-load-balancing-and-health-checks/index.md
index deb72fcbe7a..9adaddc8852 100644
--- a/docs/guides/uptime/loadbalancing/how-to-configure-haproxy-http-load-balancing-and-health-checks/index.md
+++ b/docs/guides/uptime/loadbalancing/how-to-configure-haproxy-http-load-balancing-and-health-checks/index.md
@@ -11,13 +11,13 @@ license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'
[HAProxy](http://www.haproxy.org) is an intermediary gateway application that manages traffic between frontend clients and backend server resources. HAProxy can be configured to load balance traffic between a set of backend servers, and it can be configured to route HTTP requests according to the URL path of the request.
-This guide is the second part in a series on HAProxy. The first guide, [Getting Started with HAProxy TCP Load Balancing and Health Checks](/docs/guides/getting-started-with-haproxy-tcp-load-balancing-and-health-checks/), provided steps to build a minimally configured network of Nanodes:
+This guide is the second part of a series on HAProxy. The first guide, [Getting Started with HAProxy TCP Load Balancing and Health Checks](/docs/guides/getting-started-with-haproxy-tcp-load-balancing-and-health-checks/), provided steps to build a minimally configured network of Nanodes:
-- An HAProxy node was set up as a TCP load balancer
-- Three Linode Marketplace WordPress servers served as the backends
-- TCP health checks were configured on the HAProxy node
+- An HAProxy node was set up as a TCP load balancer.
+- Three Linode Marketplace WordPress servers served as the backends.
+- TCP health checks were configured on the HAProxy node.
-This second guide presents another configuration for this server cluster that demonstrates how to use path-based routing and HTTP health checks.
+This second guide provides another configuration for this server cluster that demonstrates how to use path-based routing and HTTP health checks.
## Before You Begin
@@ -295,4 +295,4 @@ Follow these steps to test the concepts from the previous sections:

- This page holds a wealth of information regarding the health of your servers, including status, sessions, bytes in/out, errors, warnings, and more.
\ No newline at end of file
+ This page holds a wealth of information regarding the health of your servers, including status, sessions, bytes in/out, errors, warnings, and more.
diff --git a/docs/guides/web-servers/lamp/how-to-install-lamp-stack-on-fedora-alma-rocky-linux/index.md b/docs/guides/web-servers/lamp/how-to-install-lamp-stack-on-fedora-alma-rocky-linux/index.md
index 69ecabeabb4..e75be3a6ec5 100644
--- a/docs/guides/web-servers/lamp/how-to-install-lamp-stack-on-fedora-alma-rocky-linux/index.md
+++ b/docs/guides/web-servers/lamp/how-to-install-lamp-stack-on-fedora-alma-rocky-linux/index.md
@@ -4,7 +4,7 @@ title: "How to Install a LAMP Stack on Fedora, AlmaLinux, or Rocky Linux"
description: "This guide explains how to install a LAMP stack on Fedora and the AlmaLinux and Rocky Linux variants."
authors: ["Jeff Novotny"]
contributors: ["Jeff Novotny"]
-published: 2024-05-01
+published: 2025-07-31
keywords: ['LAMP stack Fedora','test LAMP stack','Apache Fedora','MariaDB PHP Fedora']
license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'
aliases: ['/websites/lamp/lamp-server-on-fedora-11/','/lamp-guides/fedora-11/','/web-servers/lamp/lamp-server-on-fedora-11/','/guides/lamp-server-on-fedora-11/','/websites/lamp/lamp-server-on-fedora-12/','/web-servers/lamp/lamp-server-on-fedora-12/','/lamp-guides/fedora-12/','/guides/lamp-server-on-fedora-12/','/websites/lamp/lamp-server-on-fedora-13/','/lamp-guides/fedora-13/','/web-servers/lamp/lamp-server-on-fedora-13/','/guides/lamp-server-on-fedora-13/','/web-servers/lamp/lamp-server-on-fedora-14/','/lamp-guides/fedora-14/','/websites/lamp/lamp-server-on-fedora-14/','/guides/lamp-server-on-fedora-14/','/websites/lamp/lamp-server-on-fedora-15/','/lamp-guides/fedora-15/','/web-servers/lamp/lamp-server-on-fedora-15/','/guides/lamp-server-on-fedora-15/']
@@ -23,36 +23,35 @@ relations:
- distribution: Fedora 38
---
-The most common web architecture for Linux-based systems is the [*LAMP Stack*](https://en.wikipedia.org/wiki/LAMP_(software_bundle)). This stack includes all necessary components for a web application, including an operating system, web server, relational database, and programming language. This guide explains how to install and test a LAMP stack on the Fedora Linux platform and the related AlmaLinux and Rocky Linux distributions.
+One of the most popular open-source web development platforms is the Linux-based [*LAMP Stack*](https://en.wikipedia.org/wiki/LAMP_(software_bundle)). It provides all the essential components to host dynamic websites and web applications. This guide explains how to install and test a LAMP stack on Fedora 38, as well as compatible RHEL-based distributions like **AlmaLinux 9** and **Rocky Linux 9**.
## What is a LAMP Stack?
-The LAMP stack is a core architecture for the open source Linux environment. LAMP is an acronym standing for Linux, [Apache](https://httpd.apache.org/), [MySQL](https://dev.mysql.com/) or [MariaDB](https://mariadb.com/), and [PHP](https://www.php.net/), [Perl](https://www.perl.org), or [Python](https://www.python.org). This software stack is sufficient to support most modern web sites and applications, including WordPress.
+The LAMP stack is a foundational architecture for open source web development on Linux systems. It includes four core components: Linux, [Apache](https://httpd.apache.org/), [MySQL](https://dev.mysql.com/) or [MariaDB](https://mariadb.com/), and [PHP](https://www.php.net/), [Perl](https://www.perl.org), or [Python](https://www.python.org). This stack supports a wide range of modern websites and applications, including WordPress.
-The main LAMP stack components are as follows:
+The main components are:
-- **Linux**: Linux is a free and open source UNIX-based operating system. It is available in several distinct implementations, called *distributions*. This guide uses Fedora, one of the most popular distributions. The same instructions in this guide are also applicable to the similar AlmaLinux and Rocky Linux platforms. Both of these alternatives are binary-compatible with Fedora. Each distribution of Linux has its own software library which includes the other LAMP stack components.
+- **Linux**: A free and open source UNIX-based operating system. It is available in several distinct implementations, called *distributions*. This guide uses Fedora 38, a cutting-edge distribution with frequent updates. The same instructions apply to AlmaLinux 9 and Rocky Linux 9, which are binary-compatible with Red Hat Enterprise Linux (RHEL). Each distribution of Linux has its own software library which includes the other LAMP stack components.
-- **Apache**: The open source Apache web server is the most common Linux web server. The Apache Software Foundation produces the free standard edition, containing all components required to host a web site. However, extra modules enable additional features such as authentication and programming language APIs.
+- **Apache**: A widely used open source web server. Apache provides the core tools to host web sites and supports additional features through optional modules such as authentication and programming language APIs.
-- **MariaDB/MySQL**: MySQL and MariaDB are free and open source *relational database management systems* (RDBMS). They can be used interchangeably in the LAMP Stack. MariaDB is a fork of the original MySQL code with additional features, higher scalability, and faster query speed.
+- **MariaDB/MySQL**: Both are open source *relational database management systems* (RDBMS). MariaDB, a fork of MySQL, offers improved performance and additional features. Either can serve as the database layer in a LAMP stack.
-- **PHP/Perl/Python**: PHP is the main server-side scripting and programming language for the LAMP stack. PHP commands can be efficiently embedded within an HTML page, making it a very useful language for web development. It also powers many common open source web applications. PHP is available for free under the PHP License. See the [PHP documentation](https://www.php.net/docs.php) for usage instructions. Alternatives to PHP include Perl and Python.
+- **PHP/Perl/Python**: PHP is the most common server-side scripting in LAMP environments. It integrates easily with HTML and powers many popular web applications. PHP is available for free under the PHP License. See the [PHP documentation](https://www.php.net/docs.php) for usage instructions. Perl and Python are supported alternatives.
-All of these applications are available in the core Fedora software library.
+All components are available through Fedora 38's default software repositories.
## Before You Begin
-1. If you have not already done so, create a Linode account and Compute Instance. See our [Getting Started with Linode](/docs/products/platform/get-started/) and [Creating a Compute Instance](/docs/products/compute/compute-instances/guides/create/) guides.
+1. Before installing the LAMP stack, make sure you have a Linode account and an active Compute Instance. Refer to our [Getting Started with Linode](/docs/products/platform/get-started/) and [Creating a Compute Instance](/docs/products/compute/compute-instances/guides/create/) guides.
-1. Follow our [Setting Up and Securing a Compute Instance](/docs/products/compute/compute-instances/guides/set-up-and-secure/) guide to update your system. You may also wish to set the timezone, configure your hostname, create a limited user account, and harden SSH access.
+1. Next, follow the [Setting Up and Securing a Compute Instance](/docs/products/compute/compute-instances/guides/set-up-and-secure/) guide to update your system. You may also want to set the timezone, configure the hostname, create a limited user account, and harden SSH access.
-{{< note >}}
-This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you are not familiar with the `sudo` command, see the [Users and Groups](/docs/guides/linux-users-and-groups/) guide.
-{{< /note >}}
+{{< note "type:important" >}}
+This guide assumes you're using a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you are not familiar with the `sudo` command, see our [Linux Users and Groups](/docs/guides/linux-users-and-groups/) guide.
-{{< note >}}
-The commands, file contents, and other instructions provided throughout this guide may include placeholders. These are typically domain names, IP addresses, usernames, passwords, and other values that are unique to you. The table below identifies these placeholder values and explains what to replace them with:
+**Note:**
+The commands, file contents, and configuration examples may include placeholders such as domain names, IP addresses, usernames, and passwords. Refer to the table below to replace these values with your own:
| Placeholders: | Replace With: |
| -- | -- |
@@ -64,85 +63,76 @@ The commands, file contents, and other instructions provided throughout this gui
## How to Install a LAMP Stack on Fedora
-These instructions are designed for Fedora 38, but work for AlmaLinux and Rocky Linux as well. The guide provides alternate commands whenever the process differs between distributions.
+These instructions are designed for Fedora 38, but most steps also apply to AlmaLinux 9 and Rocky Linux 9. Where necessary the guide includes alternate commands for RHEL-based distributions.
### How to Install the Apache Web Server
-1. Ensure the system is updated:
+1. Update your system:
```command
- sudo dnf upgrade
- sudo dnf update
+ sudo dnf upgrade --refresh
```
-1. Install the Apache web server:
+1. Install Apache:
```command
sudo dnf install httpd -y
```
-1. Start and enable the web server. The `enable` command automatically launches Apache when the system reboots.
+1. Enable and start Apache. (The `enable` command automatically launches Apache when the system reboots.)
```command
sudo systemctl enable httpd
sudo systemctl start httpd
```
-1. Use `systemctl` to ensure the web server is `active (running)`:
+1. Verify Apache is running:
```command
systemctl status httpd
```
- ```output
+```output
● httpd.service - The Apache HTTP Server
- Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; preset: di>
+ Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
- └─10-timeout-abort.conf
- Active: active (running) since Mon 2023-08-28 12:20:09 EDT; 47s ago
- ```
+ └─10-timeout-abort.conf
+ Active: active (running) since Mon 2023-08-28 12:20:09 EDT; 47s ago
+```
- Press the Q key to exit the `systemctl status` output and return to the terminal prompt.
+ Press Q to exit the `systemctl status` output and return to the terminal prompt.
-1. Configure the firewall settings to allow HTTP and HTTPS connections:
+1. Configure the firewall settings to allow HTTP and HTTPS traffic:
```command
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
- ```
-
- ```output
- success
- success
- ```
-
-1. Reload the firewall:
-
- ```command
sudo firewall-cmd --reload
```
- ```output
- success
- ```
+1. Test Apache in a Browser
-1. Open a Web browser and navigate to the IP address of the Fedora system. It should display the default "Fedora Webserver Test Page":
+ Open a Web browser and navigate to your server's IP address. You should see the "Fedora Webserver Test Page". AlmaLinux and Rocky Linux display similar default pages.

This indicates the web server is working but has not been fully configured yet. The AlmaLinux and Rocky Linux distributions have their own web server test pages which are similar but slightly different.
- {{< note >}}
- If the connection is blocked, it could be due to the default *Security-Enhanced Linux* (SELinux) settings. SELinux is a kernel security module packaged with several Linux distributions. The default security setting is the fairly restrictive `enforcing` mode. To reduce the security level, change the mode to `permissive` using the following command:
+ **Note:**
+ If the page doesn't load, *Security-Enhanced Linux* (SELinux) may be blocking access. Fedora uses SELinux in enforcing mode by default which is the fairly restrictive. You can temporarily switch to `permissive` mode for troubleshooting:
```command
sudo setenforce 0
+ ```
+ To make this change persistent (not recommended for production), edit the SELinux config:
+
+ ```
sudo sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/selinux/config
```
- {{< /note >}}
+
{{< note type="secondary" title="Optional" >}}
- If a domain name is pointing to the server, it can be added to the `/etc/httpd/conf/httpd.conf` file for better performance.
+ If your domain name points to the server, it can be added to the `/etc/httpd/conf/httpd.conf` file for better performance.
1. Open the `/etc/httpd/conf/httpd.conf` in a text editor with root permissions:
@@ -150,30 +140,40 @@ These instructions are designed for Fedora 38, but work for AlmaLinux and Rocky
sudo nano /etc/httpd/conf/httpd.conf
```
- 1. Add the following information to the end of file and be sure to replace `EXAMPLE_DOMAIN` with your fully-qualified domain name:
+ 2. Add the following lines at the end of file, replacing `EXAMPLE_DOMAIN` with your fully-qualified domain:
```file {title="/etc/httpd/conf/httpd.conf"}
ServerAdmin admin@EXAMPLE_DOMAIN
ServerName EXAMPLE_DOMAIN:80
```
- 1. When done, press CTRL+X, followed by Y then Enter to save the file and exit `nano`.
+ 3. To save and exit, press CTRL+X, then Y then Enter.
- 1. Restart the web server:
+ 4. Restart the Apache web server:
```command
sudo systemctl restart httpd
```
- 1. Open a Web browser and navigate to your domain name. The browser should now display the default Fedora web server page.
+ 5. Open a Web browser and navigate to your domain name. The browser should now display the default Fedora web server page.
{{< /note >}}
### How to Install the MariaDB Database
-This guide installs MariaDB as the database, but the LAMP stack can also use MySQL. MariaDB is an increasingly popular fork of the original MySQL application with some performance advantages.
+This guide installs MariaDB, a drop-in replacement for MySQL and the default database in Fedora 38. MariaDB is widely adopted and offers improved performance and additional features compared to the original MySQL application. While the LAMP stack can also use MySQL, MariaDB is fully compatible and recommended for Fedora-based systems.
{{< note >}}
-To install MySQL instead of MariaDB, replace the first command with `sudo dnf install mysql-server`, then follow the other instructions. To run the `mysql_secure_installation` script in MySQL, first add a new password for the root account.
+If you prefer to use MySQL instead of MariaDB, install it with: `sudo dnf install mysql-server`.
+Then follow the same steps to enable, start, and secure the database.
+Before running `mysql_secure_installation`, you may need to set a root password manually.
+
+```command
+1 sudo mysql
+2 ALTER USER 'root'@'localhost' IDENTIFIED BY 'your_secure_password';
+3 FLUSH PRIVILEGES;
+4 EXIT;
+5
+
{{< /note >}}
1. Install the MariaDB server:
@@ -189,7 +189,7 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
sudo systemctl start mariadb
```
-1. Verify the status of MariaDB by running the `systemctl status` command to confirm it is `active`:
+1. Check status to confirm it is `active`:
```command
sudo systemctl status mariadb
@@ -203,6 +203,7 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
Active: active (running) since Mon 2023-08-28 13:20:57 EDT; 24s ago
```
+ Depending on your system, output may show MariaDB 10.11.
Press the Q key to exit the status output and return to the terminal prompt.
1. To secure the database, use the interactive `mysql_secure_installation` utility:
@@ -227,12 +228,12 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
sudo mysql
```
- MariaDB displays background information about the application along with the `>` prompt:
+ MariaDB displays background information about the application along with the `>` prompt and may show a newer version, 10.11:
```output
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 9
- Server version: 10.5.21-MariaDB MariaDB Server
+ Server version: 10.11.6-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
@@ -245,8 +246,8 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
```command
CREATE DATABASE webdata;
- CREATE USER 'EXAMPLE_USERNAME' IDENTIFIED BY 'EXAMPLE_PASSWORD';
- GRANT ALL ON webdata.* TO 'EXAMPLE_USERNAME';
+ CREATE USER 'EXAMPLE_USERNAME'@'localhost' IDENTIFIED BY 'EXAMPLE_PASSWORD';
+ GRANT ALL PRIVILEGES ON webdata.* TO 'EXAMPLE_USERNAME'@'localhost';
FLUSH PRIVILEGES;
```
@@ -260,18 +261,36 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
### How to Install PHP
-1. Install the main PHP component, including the `php-mysqlnd` package for database integration:
+Fedora 38 includes PHP 8.2 in its default repositories. If you want to install the latest stable version of PHP (such as PHP 8.3 or 8.4), you can use the Remi repository, which is a trusted third-party source for up-to-date PHP packages.
+
+1. Option 1: Install PHP 8.2 component, (Default Fedora Package)
+This includes the `php-mysqlnd` package for database integration):
```command
- sudo dnf install php php-common php-mysqlnd -y
+ sudo dnf install -y php php-mysqlnd
```
+**Note:** This version is maintained by the Fedora project and may not include the latest PHP features. To learn more: [Fedora PHP Packages}(https://packages.fedoraproject.org/pkgs/php/)
+
+1. Option 2: Install the Latest PHP Version (via Remi Repository)
+
+To install PHP 8.3 or 8.4, enable the Remi repository and select the desired PHP module:
+
+```command
+ sudo dnf install -y https://rpms.remirepo.net/fedora/remi-release-38.rpm
+ sudo dnf module reset php
+ sudo dnf module enable php:remi-8.3
+ sudo dnf install php php-mysqlnd
+```
+This includes the php-mysqlnd package, which enables PHP to communicate with MySQL and MariaDB databases.
+
+**Note:** PHP 8.3 and 8.4 are stable and production-ready. These versions are not available in Fedora's default repositories and must be installed via Remi.
1. **Optional:** Install a selection of other commonly-used PHP extensions. Different applications might require additional PHP packages. Consult the application documentation for details.
{{< tabs >}}
{{< tab "Fedora" >}}
```command
- sudo dnf install php-cli php-gettext php-mbstring php-mcrypt php-pear php-curl php-gd php-xml php-bcmath php-zip php-json -y
+ sudo dnf install php-cli php-gettext php-mbstring php-pear php-curl php-gd php-xml php-bcmath php-zip php-json -y
```
{{< /tab >}}
{{< tab "AlmaLinux & Rocky Linux" >}}
@@ -281,11 +300,7 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
{{< /tab >}}
{{< /tabs >}}
- {{< note >}}
- AlmaLinux and Rocky Linux do not support the `php-mcrypt` component. The omission of this package is the only difference from the Fedora version of the command above.
- {{< /note >}}
-
-1. Verify the PHP release to confirm a successful installation:
+ 1. Verify the PHP release to confirm a successful installation:
```command
php -v
@@ -312,9 +327,9 @@ To install MySQL instead of MariaDB, replace the first command with `sudo dnf in
## How to Verify the LAMP Stack Installation
-To verify the stack components, embed a PHP code block containing a database connection inside an HTML page. PHP code can be integrated into an HTML file using the `}}
- If the page displays the `Connection failed` message, verify the database credentials and try again. If an HTML error occurs, ensure the contents of the sample file are complete and correct. To isolate the PHP functionality, replace the contents between ``, with `phpinfo();`. This command displays information about the PHP installation and confirms if PHP is working.
+ If the page displays the `Connection failed` message, verify the database credentials and try again. If an HTML error occurs, ensure the contents of the sample file are complete and correct. To isolate the PHP functionality, replace the contents between with `phpinfo();`. This command displays information about the PHP installation and confirms if PHP is working.
{{< /note >}}
## Additional LAMP Stack Production Considerations
@@ -376,12 +391,14 @@ The previous instructions are sufficient for small personal sites. However, comm
1. To run multiple sites from the same server, configure a virtual host for each site. This is considered a more professional configuration even for a single site.
- To configure a virtual host, add a new directory at `/var/www/html/EXAMPLE_DOMAIN/public_html`. Replace `EXAMPLE_DOMAIN` with the actual domain name. Add the website files to this directory. Then edit the file at `/etc/httpd/conf/httpd.conf` to add the virtual hosts. Each virtual host must define a `DocumentRoot`, `ServerName`, and `ServerAdmin`.
+ Configure a virtual host, add a new directory at `/var/www/html/EXAMPLE_DOMAIN/public_html`. Replace `EXAMPLE_DOMAIN` with the actual domain name. Add the website files to this directory. Then edit the file at `/etc/httpd/conf/httpd.conf` to add the virtual hosts. Each virtual host must define a `DocumentRoot`, `ServerName`, and `ServerAdmin`.
Consult the [Apache Virtual Host documentation](https://httpd.apache.org/docs/current/vhosts/) for more information.
+1. Secure and Optimize MariaDB: After installation, it's important to run `mysql_secure_installation` to remove insecure defaults and set a root password. For production environments, consider configuring `bind-address` in the MariaDB configuration file (typically `/etc/my.cnf.d/mariadb-server.cnf` or `/etc/mysql/mariadb.conf.d/50-server.cnf`) to restrict remote access. You can also improve performance by tuning settings like `innodb_buffer_pool_size, query_cache_size,` and `max_connections` based on your server's workload and available memory.
+
1. To remove the default welcome page, edit the file `/etc/httpd/conf.d/welcome.conf` and comment out all directives using the `#` symbol.
## Conclusion
-The Fedora LAMP stack consists of the Linux operating system, Apache web server, the MariaDB/MySQL database, and the PHP/Perl/Python programming language. Together, this architecture is suitable for most modern computing environments. All LAMP components are available in the standard Fedora package library and are installed using `dnf`. To test the stack, configure a database for the web user and create a simple script using HTML and PHP.
\ No newline at end of file
+The Fedora LAMP stack consists of the Linux operating system, Apache web server, the MariaDB/MySQL database, and the PHP/Perl/Python programming language. Together, this architecture is suitable for most modern computing environments. All LAMP components are available in the standard Fedora package library and are installed using `dnf`. To test the stack, configure a database for the web user and create a simple script using HTML and PHP.
diff --git a/package-lock.json b/package-lock.json
index ac59311000b..2cc44ac138f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -18,7 +18,7 @@
"cypress-axe": "^1.5.0",
"cypress-html-validate": "^6.1.0",
"html-validate": "^8.20.1",
- "postcss": "^8.4.38",
+ "postcss": "^8.5.6",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.2",
"prettier-plugin-go-template": "^0.0.15",
@@ -4638,9 +4638,9 @@
}
},
"node_modules/nanoid": {
- "version": "3.3.7",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
- "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
"dev": true,
"funding": [
{
@@ -4648,6 +4648,7 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"bin": {
"nanoid": "bin/nanoid.cjs"
},
@@ -4843,10 +4844,11 @@
"dev": true
},
"node_modules/picocolors": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz",
- "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==",
- "dev": true
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "dev": true,
+ "license": "ISC"
},
"node_modules/picomatch": {
"version": "2.3.1",
@@ -4879,9 +4881,9 @@
}
},
"node_modules/postcss": {
- "version": "8.4.39",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz",
- "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==",
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
"dev": true,
"funding": [
{
@@ -4897,10 +4899,11 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
- "nanoid": "^3.3.7",
- "picocolors": "^1.0.1",
- "source-map-js": "^1.2.0"
+ "nanoid": "^3.3.11",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
},
"engines": {
"node": "^10 || ^12 || >=14"
@@ -5630,10 +5633,11 @@
"dev": true
},
"node_modules/source-map-js": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
- "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
"dev": true,
+ "license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
}
@@ -9672,9 +9676,9 @@
}
},
"nanoid": {
- "version": "3.3.7",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
- "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
"dev": true
},
"node-releases": {
@@ -9816,9 +9820,9 @@
"dev": true
},
"picocolors": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz",
- "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
"dev": true
},
"picomatch": {
@@ -9840,14 +9844,14 @@
"dev": true
},
"postcss": {
- "version": "8.4.39",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz",
- "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==",
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
"dev": true,
"requires": {
- "nanoid": "^3.3.7",
- "picocolors": "^1.0.1",
- "source-map-js": "^1.2.0"
+ "nanoid": "^3.3.11",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
}
},
"postcss-cli": {
@@ -10338,9 +10342,9 @@
}
},
"source-map-js": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
- "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
"dev": true
},
"sshpk": {
diff --git a/package.json b/package.json
index 6317d33e637..e4135b5ea08 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,6 @@
"tailwindcss": "github.com/linode/linode-docs-theme"
}
},
- "dependencies": {},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
@@ -31,7 +30,7 @@
"cypress-axe": "^1.5.0",
"cypress-html-validate": "^6.1.0",
"html-validate": "^8.20.1",
- "postcss": "^8.4.38",
+ "postcss": "^8.5.6",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.2",
"prettier-plugin-go-template": "^0.0.15",
diff --git a/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/CHANGELOG.md b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/CHANGELOG.md
new file mode 100644
index 00000000000..4e6e517c72b
--- /dev/null
+++ b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/CHANGELOG.md
@@ -0,0 +1 @@
+Release notes for this project are kept here: https://github.com/linode/terraform-provider-linode/releases
diff --git a/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/LICENSE b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/LICENSE
new file mode 100644
index 00000000000..a612ad9813b
--- /dev/null
+++ b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/LICENSE
@@ -0,0 +1,373 @@
+Mozilla Public License Version 2.0
+==================================
+
+1. Definitions
+--------------
+
+1.1. "Contributor"
+ means each individual or legal entity that creates, contributes to
+ the creation of, or owns Covered Software.
+
+1.2. "Contributor Version"
+ means the combination of the Contributions of others (if any) used
+ by a Contributor and that particular Contributor's Contribution.
+
+1.3. "Contribution"
+ means Covered Software of a particular Contributor.
+
+1.4. "Covered Software"
+ means Source Code Form to which the initial Contributor has attached
+ the notice in Exhibit A, the Executable Form of such Source Code
+ Form, and Modifications of such Source Code Form, in each case
+ including portions thereof.
+
+1.5. "Incompatible With Secondary Licenses"
+ means
+
+ (a) that the initial Contributor has attached the notice described
+ in Exhibit B to the Covered Software; or
+
+ (b) that the Covered Software was made available under the terms of
+ version 1.1 or earlier of the License, but not also under the
+ terms of a Secondary License.
+
+1.6. "Executable Form"
+ means any form of the work other than Source Code Form.
+
+1.7. "Larger Work"
+ means a work that combines Covered Software with other material, in
+ a separate file or files, that is not Covered Software.
+
+1.8. "License"
+ means this document.
+
+1.9. "Licensable"
+ means having the right to grant, to the maximum extent possible,
+ whether at the time of the initial grant or subsequently, any and
+ all of the rights conveyed by this License.
+
+1.10. "Modifications"
+ means any of the following:
+
+ (a) any file in Source Code Form that results from an addition to,
+ deletion from, or modification of the contents of Covered
+ Software; or
+
+ (b) any new file in Source Code Form that contains any Covered
+ Software.
+
+1.11. "Patent Claims" of a Contributor
+ means any patent claim(s), including without limitation, method,
+ process, and apparatus claims, in any patent Licensable by such
+ Contributor that would be infringed, but for the grant of the
+ License, by the making, using, selling, offering for sale, having
+ made, import, or transfer of either its Contributions or its
+ Contributor Version.
+
+1.12. "Secondary License"
+ means either the GNU General Public License, Version 2.0, the GNU
+ Lesser General Public License, Version 2.1, the GNU Affero General
+ Public License, Version 3.0, or any later versions of those
+ licenses.
+
+1.13. "Source Code Form"
+ means the form of the work preferred for making modifications.
+
+1.14. "You" (or "Your")
+ means an individual or a legal entity exercising rights under this
+ License. For legal entities, "You" includes any entity that
+ controls, is controlled by, or is under common control with You. For
+ purposes of this definition, "control" means (a) the power, direct
+ or indirect, to cause the direction or management of such entity,
+ whether by contract or otherwise, or (b) ownership of more than
+ fifty percent (50%) of the outstanding shares or beneficial
+ ownership of such entity.
+
+2. License Grants and Conditions
+--------------------------------
+
+2.1. Grants
+
+Each Contributor hereby grants You a world-wide, royalty-free,
+non-exclusive license:
+
+(a) under intellectual property rights (other than patent or trademark)
+ Licensable by such Contributor to use, reproduce, make available,
+ modify, display, perform, distribute, and otherwise exploit its
+ Contributions, either on an unmodified basis, with Modifications, or
+ as part of a Larger Work; and
+
+(b) under Patent Claims of such Contributor to make, use, sell, offer
+ for sale, have made, import, and otherwise transfer either its
+ Contributions or its Contributor Version.
+
+2.2. Effective Date
+
+The licenses granted in Section 2.1 with respect to any Contribution
+become effective for each Contribution on the date the Contributor first
+distributes such Contribution.
+
+2.3. Limitations on Grant Scope
+
+The licenses granted in this Section 2 are the only rights granted under
+this License. No additional rights or licenses will be implied from the
+distribution or licensing of Covered Software under this License.
+Notwithstanding Section 2.1(b) above, no patent license is granted by a
+Contributor:
+
+(a) for any code that a Contributor has removed from Covered Software;
+ or
+
+(b) for infringements caused by: (i) Your and any other third party's
+ modifications of Covered Software, or (ii) the combination of its
+ Contributions with other software (except as part of its Contributor
+ Version); or
+
+(c) under Patent Claims infringed by Covered Software in the absence of
+ its Contributions.
+
+This License does not grant any rights in the trademarks, service marks,
+or logos of any Contributor (except as may be necessary to comply with
+the notice requirements in Section 3.4).
+
+2.4. Subsequent Licenses
+
+No Contributor makes additional grants as a result of Your choice to
+distribute the Covered Software under a subsequent version of this
+License (see Section 10.2) or under the terms of a Secondary License (if
+permitted under the terms of Section 3.3).
+
+2.5. Representation
+
+Each Contributor represents that the Contributor believes its
+Contributions are its original creation(s) or it has sufficient rights
+to grant the rights to its Contributions conveyed by this License.
+
+2.6. Fair Use
+
+This License is not intended to limit any rights You have under
+applicable copyright doctrines of fair use, fair dealing, or other
+equivalents.
+
+2.7. Conditions
+
+Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
+in Section 2.1.
+
+3. Responsibilities
+-------------------
+
+3.1. Distribution of Source Form
+
+All distribution of Covered Software in Source Code Form, including any
+Modifications that You create or to which You contribute, must be under
+the terms of this License. You must inform recipients that the Source
+Code Form of the Covered Software is governed by the terms of this
+License, and how they can obtain a copy of this License. You may not
+attempt to alter or restrict the recipients' rights in the Source Code
+Form.
+
+3.2. Distribution of Executable Form
+
+If You distribute Covered Software in Executable Form then:
+
+(a) such Covered Software must also be made available in Source Code
+ Form, as described in Section 3.1, and You must inform recipients of
+ the Executable Form how they can obtain a copy of such Source Code
+ Form by reasonable means in a timely manner, at a charge no more
+ than the cost of distribution to the recipient; and
+
+(b) You may distribute such Executable Form under the terms of this
+ License, or sublicense it under different terms, provided that the
+ license for the Executable Form does not attempt to limit or alter
+ the recipients' rights in the Source Code Form under this License.
+
+3.3. Distribution of a Larger Work
+
+You may create and distribute a Larger Work under terms of Your choice,
+provided that You also comply with the requirements of this License for
+the Covered Software. If the Larger Work is a combination of Covered
+Software with a work governed by one or more Secondary Licenses, and the
+Covered Software is not Incompatible With Secondary Licenses, this
+License permits You to additionally distribute such Covered Software
+under the terms of such Secondary License(s), so that the recipient of
+the Larger Work may, at their option, further distribute the Covered
+Software under the terms of either this License or such Secondary
+License(s).
+
+3.4. Notices
+
+You may not remove or alter the substance of any license notices
+(including copyright notices, patent notices, disclaimers of warranty,
+or limitations of liability) contained within the Source Code Form of
+the Covered Software, except that You may alter any license notices to
+the extent required to remedy known factual inaccuracies.
+
+3.5. Application of Additional Terms
+
+You may choose to offer, and to charge a fee for, warranty, support,
+indemnity or liability obligations to one or more recipients of Covered
+Software. However, You may do so only on Your own behalf, and not on
+behalf of any Contributor. You must make it absolutely clear that any
+such warranty, support, indemnity, or liability obligation is offered by
+You alone, and You hereby agree to indemnify every Contributor for any
+liability incurred by such Contributor as a result of warranty, support,
+indemnity or liability terms You offer. You may include additional
+disclaimers of warranty and limitations of liability specific to any
+jurisdiction.
+
+4. Inability to Comply Due to Statute or Regulation
+---------------------------------------------------
+
+If it is impossible for You to comply with any of the terms of this
+License with respect to some or all of the Covered Software due to
+statute, judicial order, or regulation then You must: (a) comply with
+the terms of this License to the maximum extent possible; and (b)
+describe the limitations and the code they affect. Such description must
+be placed in a text file included with all distributions of the Covered
+Software under this License. Except to the extent prohibited by statute
+or regulation, such description must be sufficiently detailed for a
+recipient of ordinary skill to be able to understand it.
+
+5. Termination
+--------------
+
+5.1. The rights granted under this License will terminate automatically
+if You fail to comply with any of its terms. However, if You become
+compliant, then the rights granted under this License from a particular
+Contributor are reinstated (a) provisionally, unless and until such
+Contributor explicitly and finally terminates Your grants, and (b) on an
+ongoing basis, if such Contributor fails to notify You of the
+non-compliance by some reasonable means prior to 60 days after You have
+come back into compliance. Moreover, Your grants from a particular
+Contributor are reinstated on an ongoing basis if such Contributor
+notifies You of the non-compliance by some reasonable means, this is the
+first time You have received notice of non-compliance with this License
+from such Contributor, and You become compliant prior to 30 days after
+Your receipt of the notice.
+
+5.2. If You initiate litigation against any entity by asserting a patent
+infringement claim (excluding declaratory judgment actions,
+counter-claims, and cross-claims) alleging that a Contributor Version
+directly or indirectly infringes any patent, then the rights granted to
+You by any and all Contributors for the Covered Software under Section
+2.1 of this License shall terminate.
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all
+end user license agreements (excluding distributors and resellers) which
+have been validly granted by You or Your distributors under this License
+prior to termination shall survive termination.
+
+************************************************************************
+* *
+* 6. Disclaimer of Warranty *
+* ------------------------- *
+* *
+* Covered Software is provided under this License on an "as is" *
+* basis, without warranty of any kind, either expressed, implied, or *
+* statutory, including, without limitation, warranties that the *
+* Covered Software is free of defects, merchantable, fit for a *
+* particular purpose or non-infringing. The entire risk as to the *
+* quality and performance of the Covered Software is with You. *
+* Should any Covered Software prove defective in any respect, You *
+* (not any Contributor) assume the cost of any necessary servicing, *
+* repair, or correction. This disclaimer of warranty constitutes an *
+* essential part of this License. No use of any Covered Software is *
+* authorized under this License except under this disclaimer. *
+* *
+************************************************************************
+
+************************************************************************
+* *
+* 7. Limitation of Liability *
+* -------------------------- *
+* *
+* Under no circumstances and under no legal theory, whether tort *
+* (including negligence), contract, or otherwise, shall any *
+* Contributor, or anyone who distributes Covered Software as *
+* permitted above, be liable to You for any direct, indirect, *
+* special, incidental, or consequential damages of any character *
+* including, without limitation, damages for lost profits, loss of *
+* goodwill, work stoppage, computer failure or malfunction, or any *
+* and all other commercial damages or losses, even if such party *
+* shall have been informed of the possibility of such damages. This *
+* limitation of liability shall not apply to liability for death or *
+* personal injury resulting from such party's negligence to the *
+* extent applicable law prohibits such limitation. Some *
+* jurisdictions do not allow the exclusion or limitation of *
+* incidental or consequential damages, so this exclusion and *
+* limitation may not apply to You. *
+* *
+************************************************************************
+
+8. Litigation
+-------------
+
+Any litigation relating to this License may be brought only in the
+courts of a jurisdiction where the defendant maintains its principal
+place of business and such litigation shall be governed by laws of that
+jurisdiction, without reference to its conflict-of-law provisions.
+Nothing in this Section shall prevent a party's ability to bring
+cross-claims or counter-claims.
+
+9. Miscellaneous
+----------------
+
+This License represents the complete agreement concerning the subject
+matter hereof. If any provision of this License is held to be
+unenforceable, such provision shall be reformed only to the extent
+necessary to make it enforceable. Any law or regulation which provides
+that the language of a contract shall be construed against the drafter
+shall not be used to construe this License against a Contributor.
+
+10. Versions of the License
+---------------------------
+
+10.1. New Versions
+
+Mozilla Foundation is the license steward. Except as provided in Section
+10.3, no one other than the license steward has the right to modify or
+publish new versions of this License. Each version will be given a
+distinguishing version number.
+
+10.2. Effect of New Versions
+
+You may distribute the Covered Software under the terms of the version
+of the License under which You originally received the Covered Software,
+or under the terms of any subsequent version published by the license
+steward.
+
+10.3. Modified Versions
+
+If you create software not governed by this License, and you want to
+create a new license for such software, you may create and use a
+modified version of this License if you rename the license and remove
+any references to the name of the license steward (except to note that
+such modified license differs from this License).
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary
+Licenses
+
+If You choose to distribute Source Code Form that is Incompatible With
+Secondary Licenses under the terms of this version of the License, the
+notice described in Exhibit B of this License must be attached.
+
+Exhibit A - Source Code Form License Notice
+-------------------------------------------
+
+ This Source Code Form is subject to the terms of the Mozilla Public
+ License, v. 2.0. If a copy of the MPL was not distributed with this
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+If it is not possible or desirable to put the notice in a particular
+file, then You may include the notice in a location (such as a LICENSE
+file in a relevant directory) where a recipient would be likely to look
+for such a notice.
+
+You may add additional accurate notices of copyright ownership.
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+---------------------------------------------------------
+
+ This Source Code Form is "Incompatible With Secondary Licenses", as
+ defined by the Mozilla Public License, v. 2.0.
diff --git a/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/README.md b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/README.md
new file mode 100644
index 00000000000..93d04943b9e
--- /dev/null
+++ b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/README.md
@@ -0,0 +1,94 @@
+# Terraform Provider for Linode
+
+[](https://github.com/linode/terraform-provider-linode/releases/latest)
+[](https://godoc.org/github.com/linode/terraform-provider-linode)
+[](https://goreportcard.com/report/github.com/linode/terraform-provider-linode)
+[](https://gitter.im/hashicorp-terraform/Lobby)
+
+
+- Website:
+- Documentation:
+- Mailing list: [Google Groups](http://groups.google.com/group/terraform-tool)
+
+
+
+## Maintainers
+
+This provider plugin is maintained by Linode.
+
+## Requirements
+
+- [Terraform](https://www.terraform.io/downloads.html) 1.0.0+
+- [Go](https://golang.org/doc/install) 1.23.0 or higher (to build the provider plugin)
+
+## Using the provider
+
+See the [Linode Provider documentation](https://www.terraform.io/docs/providers/linode/index.html) to get started using the Linode provider. The [examples](https://github.com/linode/terraform-provider-linode/tree/main/examples) included in this repository demonstrate usage of many of the Linode provider resources.
+
+Additional documentation and examples are provided in the Linode Guide, [Using Terraform to Provision Linode Environments](https://linode.com/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/).
+
+## Development
+
+### Building the provider
+
+If you wish to build or contribute code to the provider, you'll first need [Git](https://git-scm.com/downloads) and [Go](http://www.golang.org) installed on your machine (version 1.11+ is *required*).
+
+You'll also need to correctly configure a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`.
+
+To compile the provider, run `make`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
+
+Clone this repository to: `$GOPATH/src/github.com/linode/terraform-provider-linode`
+
+```sh
+mkdir -p $GOPATH/src/github.com/linode
+cd $GOPATH/src/github.com/linode
+git clone https://github.com/linode/terraform-provider-linode.git
+```
+
+Enter the provider directory and build the provider
+
+```sh
+cd $GOPATH/src/github.com/linode/terraform-provider-linode
+make
+```
+
+### Testing the provider
+
+In order to run the full suite of Acceptance tests, run `make test-int`. Acceptance testing will require the `LINODE_TOKEN` variable to be populated with a Linode APIv4 Token. See [Linode Provider documentation](https://www.terraform.io/docs/providers/linode/index.html) for more details.
+
+*Note:* Acceptance tests create real resources, and often cost money to run.
+
+```sh
+make test-int
+```
+
+Use the following command template to execute specific Acceptance test,
+
+```shell
+# PKG_NAME is the directory in linode/ that contains the corresponding TEST_CASE
+make PKG_NAME="volume" TEST_CASE="TestAccResourceVolume_basic" test-int
+```
+
+Use the following command template to execute particular Acceptance tests within a specific package
+
+```shell
+make TEST_SUITE="volume" test-int
+```
+
+There are a number of useful flags and variables to aid in debugging.
+
+- `TF_LOG_PROVIDER` - This instructs Terraform to emit provider logging messages at the given level.
+
+- `TF_LOG` - This instructs Terraform to emit logging messages at the given level.
+
+- `TF_LOG_PROVIDER_LINODE_REQUESTS` - This instructs terraform-provider-linode to output API request logs at the given level.
+
+- `TF_SCHEMA_PANIC_ON_ERROR` - This forces Terraform to panic if a Schema Set command failed.
+
+These values (along with `LINODE_TOKEN`) can be placed in a `.env` file in the repository root to avoid repeating them on the command line.
+
+To filter down to logs relevant to the Linode provider, the following command can be used:
+
+```bash
+terraform apply 2> >(grep '@module=linode' >&2)
+```
diff --git a/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/terraform-provider-linode_v3.0.0.exe b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/terraform-provider-linode_v3.0.0.exe
new file mode 100644
index 00000000000..adf9cfa06f4
Binary files /dev/null and b/terraform_my_demo/.terraform/providers/registry.terraform.io/linode/linode/3.0.0/windows_amd64/terraform-provider-linode_v3.0.0.exe differ