Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxjoehnk/terraform-provider-iis
https://github.com/maxjoehnk/terraform-provider-iis
iis terraform terraform-provider
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxjoehnk/terraform-provider-iis
- Owner: maxjoehnk
- Created: 2019-01-29T17:14:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:11:44.000Z (about 1 year ago)
- Last Synced: 2024-10-04T20:31:14.262Z (3 months ago)
- Topics: iis, terraform, terraform-provider
- Language: Go
- Size: 45.9 KB
- Stars: 5
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terraform IIS Provider
Terraform Provider using the [Microsoft IIS Administration](https://docs.microsoft.com/en-us/IIS-Administration/) API.
## Usage
```hcl
provider "iis" {
access_key = "your access key"
host = "https://localhost:55539"
}resource "iis_application_pool" "name" {
name = "AppPool" // Name of the Application Pool
}resource "iis_application" "name" {
physical_path = "%systemdrive%\\inetpub\\your_app" // Path on the server to your web app
application_pool = "${iis_application_pool.name.id}"
path = "YourApp" // Path for URL access
website = "${data.iis_website.default.ids[0]}" // id for the website is required
}data "iis_website" "default" {}
```