├── .github └── workflows │ └── jekyll-gh-pages.yml ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── announcement.html ├── count.js ├── favicons ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest ├── fork.html ├── images ├── og.png ├── on-dark@2x.png ├── on-light@2x.png ├── opentf_logo.png └── star-history-202395.png ├── index.html └── style.css /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | opentf.org -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/README.md -------------------------------------------------------------------------------- /announcement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/announcement.html -------------------------------------------------------------------------------- /count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/count.js -------------------------------------------------------------------------------- /favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/favicon.ico -------------------------------------------------------------------------------- /favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/favicons/site.webmanifest -------------------------------------------------------------------------------- /fork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/fork.html -------------------------------------------------------------------------------- /images/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/images/og.png -------------------------------------------------------------------------------- /images/on-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/images/on-dark@2x.png -------------------------------------------------------------------------------- /images/on-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/images/on-light@2x.png -------------------------------------------------------------------------------- /images/opentf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/images/opentf_logo.png -------------------------------------------------------------------------------- /images/star-history-202395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/images/star-history-202395.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentofu/manifesto/HEAD/style.css --------------------------------------------------------------------------------