summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md2
-rw-r--r--autoload/csv.vim14
-rw-r--r--autoload/go/config.vim4
-rw-r--r--autoload/terraform.vim2
-rw-r--r--autoload/xml/html5.vim5
-rw-r--r--ftplugin/dhall.vim2
-rw-r--r--ftplugin/git.vim2
-rw-r--r--ftplugin/gitcommit.vim2
-rw-r--r--ftplugin/gitrebase.vim2
-rw-r--r--ftplugin/markdown.vim4
-rw-r--r--ftplugin/svelte.vim47
-rw-r--r--indent/julia.vim11
-rw-r--r--indent/ruby.vim2
-rw-r--r--indent/svelte.vim148
-rw-r--r--indent/typescript.vim2
-rw-r--r--syntax/ansible.vim7
-rw-r--r--syntax/dhall.vim2
-rw-r--r--syntax/git.vim6
-rw-r--r--syntax/gitcommit.vim4
-rw-r--r--syntax/gitconfig.vim2
-rw-r--r--syntax/gitrebase.vim4
-rw-r--r--syntax/html.vim2
-rw-r--r--syntax/kotlin.vim30
-rw-r--r--syntax/markdown.vim4
-rw-r--r--syntax/meson.vim3
-rw-r--r--syntax/slim.vim2
-rw-r--r--syntax/svelte.vim126
-rw-r--r--syntax/terraform.vim5458
-rw-r--r--syntax/toml.vim4
-rw-r--r--syntax/zig.vim6
30 files changed, 107 insertions, 5802 deletions
diff --git a/README.md b/README.md
index 5176171f..35228ecf 100644
--- a/README.md
+++ b/README.md
@@ -166,7 +166,7 @@ If you need full functionality of any plugin, please use it directly with your p
- [smt2](https://github.com/bohlender/vim-smt2) (syntax, autoload, ftplugin)
- [solidity](https://github.com/tomlion/vim-solidity) (syntax, indent, ftplugin)
- [stylus](https://github.com/wavded/vim-stylus) (syntax, indent, ftplugin)
-- [svelte](https://github.com/evanleck/vim-svelte) (syntax, indent, ftplugin)
+- [svelte](https://github.com/evanleck/vim-svelte) ()
- [svg-indent](https://github.com/jasonshell/vim-svg-indent) (indent)
- [svg](https://github.com/vim-scripts/svg.vim) (syntax)
- [swift](https://github.com/keith/swift.vim) (syntax, indent, compiler, ftplugin, ctags)
diff --git a/autoload/csv.vim b/autoload/csv.vim
index 2adcf1bb..8561f30f 100644
--- a/autoload/csv.vim
+++ b/autoload/csv.vim
@@ -1956,8 +1956,12 @@ fu! csv#CheckHeaderLine() "{{{3
endfu
fu! csv#AnalyzeColumn(...) "{{{3
let maxcolnr = csv#MaxColumns()
- if len(a:000) == 1
+ let topn = 5
+ if len(a:000) > 0
let colnr = a:1
+ if len(a:000) == 2
+ let topn = a:2
+ endif
else
let colnr = csv#WColumn()
endif
@@ -1985,8 +1989,8 @@ fu! csv#AnalyzeColumn(...) "{{{3
let max_items = reverse(sort(values(res), s:csv_numeric_sort ? 'n' : 'csv#CSVSortValues'))
" What about the minimum 5 items?
let count_items = keys(res)
- if len(max_items) > 5
- call remove(max_items, 5, -1)
+ if len(max_items) > topn
+ call remove(max_items, topn, -1)
call map(max_items, 'printf(''\V%s\m'', escape(v:val, ''\\''))')
call filter(res, 'v:val =~ ''^''.join(max_items, ''\|'').''$''')
endif
@@ -2311,8 +2315,8 @@ fu! csv#CommandDefinitions() "{{{3
\ '-bang -nargs=? -range=%')
call csv#LocalCmd("Filters", ':call csv#OutputFilters(<bang>0)',
\ '-nargs=0 -bang')
- call csv#LocalCmd("Analyze", ':call csv#AnalyzeColumn(<args>)',
- \ '-nargs=?')
+ call csv#LocalCmd("Analyze", ':call csv#AnalyzeColumn(<f-args>)',
+ \ '-nargs=*' )
call csv#LocalCmd("VertFold", ':call csv#Vertfold(<bang>0,<q-args>)',
\ '-bang -nargs=? -range=% -complete=custom,csv#SortComplete')
call csv#LocalCmd("CSVFixed", ':call csv#InitCSVFixedWidth()', '')
diff --git a/autoload/go/config.vim b/autoload/go/config.vim
index 3030a7c6..26d6de91 100644
--- a/autoload/go/config.vim
+++ b/autoload/go/config.vim
@@ -496,6 +496,10 @@ function! go#config#CodeCompletionEnabled() abort
return get(g:, "go_code_completion_enabled", 1)
endfunction
+function! go#config#CodeCompletionIcase() abort
+ return get(g:, "go_code_completion_icase", 0)
+endfunction
+
function! go#config#Updatetime() abort
let go_updatetime = get(g:, 'go_updatetime', 800)
return go_updatetime == 0 ? &updatetime : go_updatetime
diff --git a/autoload/terraform.vim b/autoload/terraform.vim
index f1a10244..05a88e30 100644
--- a/autoload/terraform.vim
+++ b/autoload/terraform.vim
@@ -55,6 +55,8 @@ function! terraform#commands(ArgLead, CmdLine, CursorPos) abort
\ 'graph',
\ 'import',
\ 'init',
+ \ 'login',
+ \ 'logout',
\ 'output',
\ 'plan',
\ 'providers',
diff --git a/autoload/xml/html5.vim b/autoload/xml/html5.vim
index ed523b2c..a20fd4f9 100644
--- a/autoload/xml/html5.vim
+++ b/autoload/xml/html5.vim
@@ -131,6 +131,7 @@ let attributes_value = {
\ 'label': ['Text', ''],
\ 'lang': ['Lang Tag', ''],
\ 'list': ['ID', ''],
+ \ 'loading': ['eager/lazy', ''],
\ 'loop': ['Bool', ''],
\ 'low': ['Number', ''],
\ 'manifest': ['URL', ''],
@@ -588,11 +589,11 @@ let g:xmldata_html5 = {
\ ],
\ 'iframe': [
\ [],
- \ extend(copy(global_attributes), {'src': [], 'srcdoc': [], 'name': [], 'width': [], 'height': [], 'sandbox': ['allow-same-origin', 'allow-forms', 'allow-scripts'], 'seamless': ['seamless', ''], 'referrerpolicy': referrerpolicy, 'allowfullscreen': [], 'allowpaymentrequest': [], 'allowpresentation': [], 'allowusermedia': []})
+ \ extend(copy(global_attributes), {'src': [], 'srcdoc': [], 'name': [], 'width': [], 'height': [], 'sandbox': ['allow-same-origin', 'allow-forms', 'allow-scripts'], 'seamless': ['seamless', ''], 'referrerpolicy': referrerpolicy, 'allowfullscreen': [], 'allowpaymentrequest': [], 'allowpresentation': [], 'allowusermedia': [], 'loading': ['eager', 'lazy']})
\ ],
\ 'img': [
\ [],
- \ extend(copy(global_attributes), {'src': [], 'alt': [], 'height': [], 'width': [], 'decoding': ['async', 'sync', 'auto'], 'usemap': [], 'ismap': ['ismap', ''], 'referrerpolicy': referrerpolicy, 'crossorigin': ['anonymous', 'use-credentials']})
+ \ extend(copy(global_attributes), {'src': [], 'alt': [], 'height': [], 'width': [], 'decoding': ['async', 'sync', 'auto'], 'usemap': [], 'ismap': ['ismap', ''], 'referrerpolicy': referrerpolicy, 'crossorigin': ['anonymous', 'use-credentials'], 'loading': ['eager', 'lazy']})
\ ],
\ 'input': [
\ [],
diff --git a/ftplugin/dhall.vim b/ftplugin/dhall.vim
index c5553f49..34974cd5 100644
--- a/ftplugin/dhall.vim
+++ b/ftplugin/dhall.vim
@@ -9,6 +9,8 @@ setlocal commentstring=--\ %s
set smarttab
+autocmd! dhall
+
if exists('g:dhall_use_ctags')
if g:dhall_use_ctags == 1
augroup dhall
diff --git a/ftplugin/git.vim b/ftplugin/git.vim
index 4e17198b..0137f594 100644
--- a/ftplugin/git.vim
+++ b/ftplugin/git.vim
@@ -3,7 +3,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Vim filetype plugin
" Language: generic git output
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 05
" Only do this when not done yet for this buffer
if (exists("b:did_ftplugin"))
diff --git a/ftplugin/gitcommit.vim b/ftplugin/gitcommit.vim
index c56eacdf..e8810c4f 100644
--- a/ftplugin/gitcommit.vim
+++ b/ftplugin/gitcommit.vim
@@ -3,7 +3,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Vim filetype plugin
" Language: git commit file
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 05
" Only do this when not done yet for this buffer
if (exists("b:did_ftplugin"))
diff --git a/ftplugin/gitrebase.vim b/ftplugin/gitrebase.vim
index 70fed8f4..27213988 100644
--- a/ftplugin/gitrebase.vim
+++ b/ftplugin/gitrebase.vim
@@ -3,7 +3,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Vim filetype plugin
" Language: git rebase --interactive
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 05
" Only do this when not done yet for this buffer
if (exists("b:did_ftplugin"))
diff --git a/ftplugin/markdown.vim b/ftplugin/markdown.vim
index 1c4268be..53e94872 100644
--- a/ftplugin/markdown.vim
+++ b/ftplugin/markdown.vim
@@ -790,7 +790,7 @@ function! s:MarkdownHighlightSources(force)
" Look for code blocks in the current file
let filetypes = {}
for line in getline(1, '$')
- let ft = matchstr(line, '```\s*\zs[0-9A-Za-z_+-]*')
+ let ft = matchstr(line, '```\s*\zs[0-9A-Za-z_+-]*\ze.*')
if !empty(ft) && ft !~ '^\d*$' | let filetypes[ft] = 1 | endif
endfor
if !exists('b:mkd_known_filetypes')
@@ -821,7 +821,7 @@ function! s:MarkdownHighlightSources(force)
else
let include = '@' . toupper(filetype)
endif
- let command = 'syntax region %s matchgroup=%s start="^\s*```\s*%s$" matchgroup=%s end="\s*```$" keepend contains=%s%s'
+ let command = 'syntax region %s matchgroup=%s start="^\s*```\s*%s.*$" matchgroup=%s end="\s*```$" keepend contains=%s%s'
execute printf(command, group, startgroup, ft, endgroup, include, has('conceal') && get(g:, 'vim_markdown_conceal', 1) && get(g:, 'vim_markdown_conceal_code_blocks', 1) ? ' concealends' : '')
execute printf('syntax cluster mkdNonListItem add=%s', group)
diff --git a/ftplugin/svelte.vim b/ftplugin/svelte.vim
deleted file mode 100644
index 3c3df23a..00000000
--- a/ftplugin/svelte.vim
+++ /dev/null
@@ -1,47 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'svelte') == -1
-
-" Vim filetype plugin
-" Language: Svelte 3 (HTML/JavaScript)
-" Author: Evan Lecklider <evan@lecklider.com>
-" Maintainer: Evan Lecklide <evan@lecklider.com>
-" URL: https://github.com/evanleck/vim-svelte
-if (exists('b:did_ftplugin'))
- finish
-endif
-let b:did_ftplugin = 1
-
-" Matchit support
-if exists('loaded_matchit') && !exists('b:match_words')
- let b:match_ignorecase = 0
-
- " In order:
- "
- " 1. Svelte control flow keywords.
- " 2. Parens.
- " 3-5. HTML tags pulled from Vim itself.
- "
- " https://github.com/vim/vim/blob/5259275347667a90fb88d8ea74331f88ad68edfc/runtime/ftplugin/html.vim#L29-L35
- let b:match_words =
- \ '#\%(if\|await\|each\)\>:\:\%(else\|catch\|then\)\>:\/\%(if\|await\|each\)\>,' .
- \ '{:},' .
- \ '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>,' .
- \ '<\@<=dl\>[^>]*\%(>\|$\):<\@<=d[td]\>:<\@<=/dl>,' .
- \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
-endif
-
-" ALE fixing and linting.
-if exists('g:loaded_ale')
- if !exists('b:ale_fixers')
- let b:ale_fixers = ['eslint', 'prettier', 'prettier_standard']
- endif
-
- if !exists('b:ale_linter_aliases')
- let b:ale_linter_aliases = ['css', 'javascript']
- endif
-
- if !exists('b:ale_linters')
- let b:ale_linters = ['stylelint', 'eslint']
- endif
-endif
-
-endif
diff --git a/indent/julia.vim b/indent/julia.vim
index 59cd7d80..d95fa193 100644
--- a/indent/julia.vim
+++ b/indent/julia.vim
@@ -270,6 +270,12 @@ function IsInBrackets(lnum, c)
return len(stack) > 0
endfunction
+function IsInDocString(lnum)
+ let stack = map(synstack(a:lnum, 1), 'synIDattr(v:val, "name")')
+ call filter(stack, 'v:val =~# "\\<juliaDocString\\>"')
+ return len(stack) > 0
+endfunction
+
" Auxiliary function to find a line which does not start in the middle of a
" multiline bracketed expression, to be used as reference for block
" indentation.
@@ -290,6 +296,11 @@ function LastBlockIndent(lnum)
endfunction
function GetJuliaIndent()
+ " Do not alter doctrings indentation
+ if IsInDocString(v:lnum)
+ return -1
+ endif
+
" Find a non-blank line above the current line.
let lnum = prevnonblank(v:lnum - 1)
diff --git a/indent/ruby.vim b/indent/ruby.vim
index 0628a24b..8e72739e 100644
--- a/indent/ruby.vim
+++ b/indent/ruby.vim
@@ -28,7 +28,7 @@ endif
if !exists('g:ruby_indent_block_style')
" Possible values: "expression", "do"
- let g:ruby_indent_block_style = 'expression'
+ let g:ruby_indent_block_style = 'do'
endif
setlocal nosmartindent
diff --git a/indent/svelte.vim b/indent/svelte.vim
deleted file mode 100644
index 8d9fbb2f..00000000
--- a/indent/svelte.vim
+++ /dev/null
@@ -1,148 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'svelte') == -1
-
-" Vim indent file
-" Language: Svelte 3 (HTML/JavaScript)
-" Author: Evan Lecklider <evan@lecklider.com>
-" Maintainer: Evan Lecklide <evan@lecklider.com>
-" URL: https://github.com/evanleck/vim-svelte
-
-if exists("b:did_indent")
- finish
-endif
-
-runtime! indent/html.vim
-unlet! b:did_indent
-
-let s:html_indent = &l:indentexpr
-let b:did_indent = 1
-
-if !exists('g:svelte_indent_script')
- let g:svelte_indent_script = 1
-endif
-
-if !exists('g:svelte_indent_style')
- let g:svelte_indent_style = 1
-endif
-
-setlocal indentexpr=GetSvelteIndent()
-setlocal indentkeys=o,O,*<Return>,<>>,{,},0),0],!^F,;,=:else,=:then,=:catch,=/if,=/each,=/await
-
-" Only define the function once.
-if exists('*GetSvelteIndent')
- finish
-endif
-
-function! GetSvelteIndent()
- let current_line_number = v:lnum
-
- if current_line_number == 0
- return 0
- endif
-
- let current_line = getline(current_line_number)
-
- " Opening script and style tags should be all the way outdented.
- if current_line =~ '^\s*</\?\(script\|style\)'
- return 0
- endif
-
- let previous_line_number = prevnonblank(current_line_number - 1)
- let previous_line = getline(previous_line_number)
- let previous_line_indent = indent(previous_line_number)
-
- " The inside of scripts an styles should be indented unless disabled.
- if previous_line =~ '^\s*<script'
- if g:svelte_indent_script
- return previous_line_indent + shiftwidth()
- else
- return previous_line_indent
- endif
- endif
-
- if previous_line =~ '^\s*<style'
- if g:svelte_indent_style
- return previous_line_indent + shiftwidth()
- else
- return previous_line_indent
- endif
- endif
-
- execute "let indent = " . s:html_indent
-
- " For some reason, the HTML CSS indentation keeps indenting the next line over
- " and over after each style declaration.
- if searchpair('<style>', '', '</style>', 'bW') && previous_line =~ ';$' && current_line !~ '}'
- return previous_line_indent
- endif
-
- " "/await" or ":catch" or ":then"
- if current_line =~ '^\s*{\s*\/await' || current_line =~ '^\s*{\s*:\(catch\|then\)'
- let await_start = searchpair('{\s*#await\>', '', '{\s*\/await\>', 'bW')
-
- if await_start
- return indent(await_start)
- endif
- endif
-
- " "/each"
- if current_line =~ '^\s*{\s*\/each'
- let each_start = searchpair('{\s*#each\>', '', '{\s*\/each\>', 'bW')
-
- if each_start
- return indent(each_start)
- endif
- endif
-
- " "/if"
- if current_line =~ '^\s*{\s*\/if'
- let if_start = searchpair('{\s*#if\>', '', '{\s*\/if\>', 'bW')
-
- if if_start
- return indent(if_start)
- endif
- endif
-
- " ":else" is tricky because it can match an opening "#each" _or_ an opening
- " "#if", so we try to be smart and look for the closest of the two.
- if current_line =~ '^\s*{\s*:else'
- let if_start = searchpair('{\s*#if\>', '', '{\s*\/if\>', 'bW')
-
- " If it's an "else if" then we know to look for an "#if"
- if current_line =~ '^\s*{\s*:else if' && if_start
- return indent(if_start)
- else
- " The greater line number will be closer to the cursor position because
- " we're searching backward.
- return indent(max([if_start, searchpair('{\s*#each\>', '', '{\s*\/each\>', 'bW')]))
- endif
- endif
-
- " "#if" or "#each"
- if previous_line =~ '^\s*{\s*#\(if\|each\|await\)'
- return previous_line_indent + shiftwidth()
- endif
-
- " ":else" or ":then"
- if previous_line =~ '^\s*{\s*:\(else\|catch\|then\)'
- return previous_line_indent + shiftwidth()
- endif
-
- " Custom element juggling for abnormal self-closing tags (<Widget />),
- " capitalized component tags (<Widget></Widget>), and custom svelte tags
- " (<svelte:head></svelte:head>).
- if synID(previous_line_number, match(previous_line, '\S') + 1, 0) == hlID('htmlTag')
- \ && synID(current_line_number, match(current_line, '\S') + 1, 0) != hlID('htmlEndTag')
- let indents_match = indent == previous_line_indent
- let previous_closes = previous_line =~ '/>$'
-
- if indents_match && !previous_closes && previous_line =~ '<\(\u\|\l\+:\l\+\)'
- return previous_line_indent + shiftwidth()
- elseif !indents_match && previous_closes
- return previous_line_indent
- endif
- endif
-
- return indent
-endfunction
-
-endif
diff --git a/indent/typescript.vim b/indent/typescript.vim
index f630a34c..64eca31b 100644
--- a/indent/typescript.vim
+++ b/indent/typescript.vim
@@ -51,7 +51,7 @@ let s:skip_expr = "synIDattr(synID(line('.'),col('.'),1),'name') =~ '".s:syng_st
let s:line_term = '\s*\%(\%(\/\/\).*\)\=$'
" Regex that defines continuation lines, not including (, {, or [.
-let s:continuation_regex = '\%([\\*+/.:]\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\|[^=]=[^=].*,\)' . s:line_term
+let s:continuation_regex = '\%([\\*+/.:]\|\%(<%\)\@<![=-]\|\W[|&?]\|||\|&&\|[^=]=[^=]\)' . s:line_term
" Regex that defines continuation lines.
" TODO: this needs to deal with if ...: and so on
diff --git a/syntax/ansible.vim b/syntax/ansible.vim
index 29921b6b..72dc977c 100644
--- a/syntax/ansible.vim
+++ b/syntax/ansible.vim
@@ -103,6 +103,13 @@ else
highlight default link ansible_with_keywords Statement
endif
+execute 'syn keyword ansible_with_keywords loop containedin='.s:yamlKey.' contained'
+if exists("g:ansible_with_keywords_highlight")
+ execute 'highlight link ansible_with_keywords '.g:ansible_with_keywords_highlight
+else
+ highlight default link ansible_with_keywords Statement
+endif
+
let b:current_syntax = "ansible"
endif
diff --git a/syntax/dhall.vim b/syntax/dhall.vim
index a28a4bc4..c42e20d2 100644
--- a/syntax/dhall.vim
+++ b/syntax/dhall.vim
@@ -6,7 +6,7 @@ if exists('b:current_syntax')
finish
endif
-syntax match dhallInterpolation "\v\$\{([^\}]|\\n)*\}"
+syntax match dhallInterpolation "\v\$\{([^\}]|\n)*\}"
syntax keyword dhallTodo TODO FIXME
syntax match dhallBrackets "[<>|]"
syntax match dhallOperator "+\|*\|#"
diff --git a/syntax/git.vim b/syntax/git.vim
index d2c919ee..142478f8 100644
--- a/syntax/git.vim
+++ b/syntax/git.vim
@@ -3,7 +3,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Vim syntax file
" Language: generic git output
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2010 May 21
+" Last Change: 2019 Dec 05
if exists("b:current_syntax")
finish
@@ -27,9 +27,9 @@ syn region gitDiff start=/^\%(@@ -\)\@=/ end=/^\%(diff --\%(git\|cc\|combined\)
syn region gitDiffMerge start=/^\%(diff --\%(cc\|combined\) \)\@=/ end=/^\%(diff --\|$\)\@=/ contains=@gitDiff
syn region gitDiffMerge start=/^\%(@@@@* -\)\@=/ end=/^\%(diff --\|$\)\@=/ contains=@gitDiff
syn match gitDiffAdded "^ \++.*" contained containedin=gitDiffMerge
-syn match gitDiffAdded "{+.*+}" contained containedin=gitDiff
+syn match gitDiffAdded "{+[^}]*+}" contained containedin=gitDiff
syn match gitDiffRemoved "^ \+-.*" contained containedin=gitDiffMerge
-syn match gitDiffRemoved "\[-.*-\]" contained containedin=gitDiff
+syn match gitDiffRemoved "\[-[^]]*-\]" contained containedin=gitDiff
syn match gitKeyword /^\%(object\|type\|tag\|commit\|tree\|parent\|encoding\)\>/ contained containedin=gitHead nextgroup=gitHash,gitType skipwhite
syn match gitKeyword /^\%(tag\>\|ref:\)/ contained containedin=gitHead nextgroup=gitReference skipwhite
diff --git a/syntax/gitcommit.vim b/syntax/gitcommit.vim
index 38cad35e..af5d4280 100644
--- a/syntax/gitcommit.vim
+++ b/syntax/gitcommit.vim
@@ -4,7 +4,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Language: git commit file
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Filenames: *.git/COMMIT_EDITMSG
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 05
if exists("b:current_syntax")
finish
@@ -32,6 +32,7 @@ else
syn match gitcommitComment "^#.*"
endif
+syn match gitcommitHash "\<\x\{40,}\>" contains=@NoSpell display
syn match gitcommitHead "^\%(# .*\n\)\+#$" contained transparent
syn match gitcommitOnBranch "\%(^# \)\@<=On branch" contained containedin=gitcommitComment nextgroup=gitcommitBranch skipwhite
syn match gitcommitOnBranch "\%(^# \)\@<=Your branch .\{-\} '" contained containedin=gitcommitComment nextgroup=gitcommitBranch skipwhite
@@ -69,6 +70,7 @@ hi def link gitcommitUntracked gitcommitComment
hi def link gitcommitDiscarded gitcommitComment
hi def link gitcommitSelected gitcommitComment
hi def link gitcommitUnmerged gitcommitComment
+hi def link gitcommitHash Identifier
hi def link gitcommitOnBranch Comment
hi def link gitcommitBranch Special
hi def link gitcommitNoBranch gitCommitBranch
diff --git a/syntax/gitconfig.vim b/syntax/gitconfig.vim
index 63865302..af401431 100644
--- a/syntax/gitconfig.vim
+++ b/syntax/gitconfig.vim
@@ -4,7 +4,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Language: git config file
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Filenames: gitconfig, .gitconfig, *.git/config
-" Last Change: 2019 Sep 27
+" Last Change: 2019 Dec 05
if exists("b:current_syntax")
finish
diff --git a/syntax/gitrebase.vim b/syntax/gitrebase.vim
index 5ef76243..4f2707b4 100644
--- a/syntax/gitrebase.vim
+++ b/syntax/gitrebase.vim
@@ -4,7 +4,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
" Language: git rebase --interactive
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Filenames: git-rebase-todo
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 06
if exists("b:current_syntax")
finish
@@ -25,7 +25,7 @@ syn match gitrebaseDrop "\v^d%(rop)=>" nextgroup=gitrebaseCommit skipwhite
syn match gitrebaseNoop "\v^noop>"
syn match gitrebaseMerge "\v^m(erge)=>" nextgroup=gitrebaseMergeOption,gitrebaseName skipwhite
syn match gitrebaseLabel "\v^l(abel)=>" nextgroup=gitrebaseName skipwhite
-syn match gitrebaseReset "\v^r(eset)=>" nextgroup=gitrebaseName skipwhite
+syn match gitrebaseReset "\v^(t|reset)=>" nextgroup=gitrebaseName skipwhite
syn match gitrebaseSummary ".*" contains=gitrebaseHash contained
syn match gitrebaseCommand ".*" contained
syn match gitrebaseComment "^\s*#.*" contains=gitrebaseHash
diff --git a/syntax/html.vim b/syntax/html.vim
index 87fce2d6..53f64797 100644
--- a/syntax/html.vim
+++ b/syntax/html.vim
@@ -131,6 +131,8 @@ syn keyword htmlArg contained prefetch
syn keyword htmlArg contained decoding
" https://w3c.github.io/selection-api/#extensions-to-globaleventhandlers
syn keyword htmlArg contained onselectstart onselectionchange
+" https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/loading
+syn keyword htmlArg contained loading
" Custom Data Attributes
" http://w3c.github.io/html/single-page.html#embedding-custom-non-visible-data-with-the-data-attributes
diff --git a/syntax/kotlin.vim b/syntax/kotlin.vim
index d47754b0..82437dd7 100644
--- a/syntax/kotlin.vim
+++ b/syntax/kotlin.vim
@@ -3,7 +3,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'kotlin') == -1
" Vim syntax file
" Language: Kotlin
" Maintainer: Alexander Udalov
-" Latest Revision: 26 May 2019
+" Latest Revision: 13 July 2020
if exists('b:current_syntax')
finish
@@ -18,7 +18,33 @@ syn keyword ktException try catch finally throw
syn keyword ktInclude import package
-syn keyword ktType Any Boolean Byte Char Double Float Int Long Nothing Short Unit
+" The following is generated by generate-stdlib-class-names.main.kts
+syn keyword ktType AbstractCollection AbstractCoroutineContextElement AbstractCoroutineContextKey AbstractDoubleTimeSource AbstractIterator AbstractList AbstractLongTimeSource
+syn keyword ktType AbstractMap AbstractMutableCollection AbstractMutableList AbstractMutableMap AbstractMutableSet AbstractSet AccessDeniedException Accessor Annotation
+syn keyword ktType AnnotationRetention AnnotationTarget Any Appendable ArithmeticException Array ArrayDeque ArrayList AssertionError Boolean BooleanArray BooleanIterator
+syn keyword ktType BuilderInference Byte ByteArray ByteIterator CallsInPlace CancellationException Char CharArray CharCategory CharDirectionality CharIterator CharProgression
+syn keyword ktType CharRange CharSequence CharacterCodingException Charsets ClassCastException Cloneable ClosedFloatingPointRange ClosedRange Collection Comparable Comparator
+syn keyword ktType ConcurrentModificationException ConditionalEffect Continuation ContinuationInterceptor ContractBuilder CoroutineContext DeepRecursiveFunction DeepRecursiveScope
+syn keyword ktType Delegates Deprecated DeprecatedSinceKotlin DeprecationLevel Destructured Double DoubleArray DoubleIterator DslMarker Duration DurationUnit Effect Element
+syn keyword ktType EmptyCoroutineContext Entry Enum Error Exception Experimental ExperimentalContracts ExperimentalJsExport ExperimentalMultiplatform ExperimentalStdlibApi
+syn keyword ktType ExperimentalTime ExperimentalTypeInference ExperimentalUnsignedTypes ExtensionFunctionType FileAlreadyExistsException FileSystemException FileTreeWalk
+syn keyword ktType FileWalkDirection Float FloatArray FloatIterator Function Function0 Function1 Function10 Function11 Function12 Function13 Function14 Function15 Function16
+syn keyword ktType Function17 Function18 Function19 Function2 Function20 Function21 Function22 Function3 Function4 Function5 Function6 Function7 Function8 Function9 FunctionN
+syn keyword ktType Getter Grouping HashMap HashSet IllegalArgumentException IllegalStateException IndexOutOfBoundsException IndexedValue Int IntArray IntIterator IntProgression
+syn keyword ktType IntRange InvocationKind Iterable Iterator JsExport JsName JvmDefault JvmDefaultWithoutCompatibility JvmField JvmMultifileClass JvmName JvmOverloads JvmStatic
+syn keyword ktType JvmSuppressWildcards JvmSynthetic JvmWildcard KAnnotatedElement KCallable KClass KClassifier KDeclarationContainer KFunction KMutableProperty KMutableProperty0
+syn keyword ktType KMutableProperty1 KMutableProperty2 KParameter KProperty KProperty0 KProperty1 KProperty2 KType KTypeParameter KTypeProjection KVariance KVisibility Key Kind
+syn keyword ktType KotlinNullPointerException KotlinReflectionNotSupportedError KotlinVersion Lazy LazyThreadSafetyMode Level LinkedHashMap LinkedHashSet List ListIterator Long
+syn keyword ktType LongArray LongIterator LongProgression LongRange Map MatchGroup MatchGroupCollection MatchNamedGroupCollection MatchResult Metadata Monotonic MustBeDocumented
+syn keyword ktType MutableCollection MutableEntry MutableIterable MutableIterator MutableList MutableListIterator MutableMap MutableSet NoSuchElementException NoSuchFileException
+syn keyword ktType NoWhenBranchMatchedException NotImplementedError Nothing NullPointerException Number NumberFormatException ObservableProperty OnErrorAction OptIn
+syn keyword ktType OptionalExpectation OverloadResolutionByLambdaReturnType Pair ParameterName PropertyDelegateProvider PublishedApi PurelyImplements Random RandomAccess
+syn keyword ktType ReadOnlyProperty ReadWriteProperty Regex RegexOption Repeatable ReplaceWith RequiresOptIn RestrictsSuspension Result Retention Returns ReturnsNotNull
+syn keyword ktType RuntimeException Sequence SequenceScope Set Setter SharedImmutable Short ShortArray ShortIterator SimpleEffect SinceKotlin Strictfp String StringBuilder Suppress
+syn keyword ktType Synchronized Target TestTimeSource ThreadLocal Throwable Throws TimeMark TimeSource TimedValue Transient Triple TypeCastException Typography UByte UByteArray
+syn keyword ktType UByteIterator UInt UIntArray UIntIterator UIntProgression UIntRange ULong ULongArray ULongIterator ULongProgression ULongRange UShort UShortArray UShortIterator
+syn keyword ktType UninitializedPropertyAccessException Unit UnsafeVariance UnsupportedOperationException UseExperimental Volatile
+
syn keyword ktModifier annotation companion enum inner internal private protected public abstract final open override sealed vararg dynamic expect actual
syn keyword ktStructure class object interface typealias fun val var constructor init
diff --git a/syntax/markdown.vim b/syntax/markdown.vim
index 6d240d52..4ab0bebc 100644
--- a/syntax/markdown.vim
+++ b/syntax/markdown.vim
@@ -105,8 +105,8 @@ execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start=/\(\([^\\]\|^\)\\\
execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start=/^\s*\z(`\{3,}\)[^`]*$/ end=/^\s*\z1`*\s*$/' . s:concealcode
execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start=/\(\([^\\]\|^\)\\\)\@<!\~\~/ end=/\(\([^\\]\|^\)\\\)\@<!\~\~/' . s:concealcode
execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start=/^\s*\z(\~\{3,}\)\s*[0-9A-Za-z_+-]*\s*$/ end=/^\s*\z1\~*\s*$/' . s:concealcode
-execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start="<pre[^>]*\\\@<!>" end="</pre>"' . s:concealcode
-execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start="<code[^>]*\\\@<!>" end="</code>"' . s:concealcode
+execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start="<pre\(\|\_s[^>]*\)\\\@<!>" end="</pre>"' . s:concealcode
+execute 'syn region mkdCode matchgroup=mkdCodeDelimiter start="<code\(\|\_s[^>]*\)\\\@<!>" end="</code>"' . s:concealcode
syn region mkdFootnote start="\[^" end="\]"
syn match mkdCode /^\s*\n\(\(\s\{8,}[^ ]\|\t\t\+[^\t]\).*\n\)\+/
syn match mkdCode /\%^\(\(\s\{4,}[^ ]\|\t\+[^\t]\).*\n\)\+/
diff --git a/syntax/meson.vim b/syntax/meson.vim
index 61dedd60..c90697d2 100644
--- a/syntax/meson.vim
+++ b/syntax/meson.vim
@@ -34,8 +34,9 @@ set cpo&vim
" http://mesonbuild.com/Syntax.html
syn keyword mesonConditional elif else if endif
-syn keyword mesonRepeat foreach endforeach
+syn keyword mesonRepeat foreach endforeach
syn keyword mesonOperator and not or in
+syn keyword mesonStatement continue break
syn match mesonComment "#.*$" contains=mesonTodo,@Spell
syn keyword mesonTodo FIXME NOTE NOTES TODO XXX contained
diff --git a/syntax/slim.vim b/syntax/slim.vim
index d2ba2e0a..0fcedef7 100644
--- a/syntax/slim.vim
+++ b/syntax/slim.vim
@@ -43,7 +43,7 @@ syn match slimTag "\w\+[><]*" contained contains=htmlTagName n
syn match slimIdChar "#{\@!" contained nextgroup=slimId
syn match slimId "\%(\w\|-\)\+" contained nextgroup=@slimComponent
syn match slimClassChar "\." contained nextgroup=slimClass
-syn match slimClass "\%(\w\|-\)\+" contained nextgroup=@slimComponent
+syn match slimClass "\%(\w\|-\|\/\d+\|:\(\w\|-\)\+\)\+" contained nextgroup=@slimComponent
syn match slimInlineTagChar "\s*:\s*" contained nextgroup=slimTag,slimClassChar,slimIdChar
syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*{\s*" skip="}\s*\"" end="\s*}\s*" contained contains=slimAttr nextgroup=slimRuby
diff --git a/syntax/svelte.vim b/syntax/svelte.vim
deleted file mode 100644
index 8ec3bb73..00000000
--- a/syntax/svelte.vim
+++ /dev/null
@@ -1,126 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'svelte') == -1
-
-" Vim syntax file
-" Language: Svelte 3 (HTML/JavaScript)
-" Author: Evan Lecklider <evan@lecklider.com>
-" Maintainer: Evan Lecklide <evan@lecklider.com>
-" Depends: pangloss/vim-javascript
-" URL: https://github.com/evanleck/vim-svelte
-"
-" Like vim-jsx, this depends on the pangloss/vim-javascript syntax package (and
-" is tested against it exclusively). If you're using vim-polyglot, then you're
-" all set.
-
-if exists("b:current_syntax")
- finish
-endif
-
-" Read HTML to begin with.
-runtime! syntax/html.vim
-unlet! b:current_syntax
-
-" Expand HTML tag names to include mixed case, periods, and colons.
-syntax match htmlTagName contained "\<[a-zA-Z:\.]*\>"
-
-" Special attributes that include some kind of binding e.g. "on:click",
-" "bind:something", etc.
-syntax match svelteKeyword "\<[a-z]\+:[a-zA-Z|]\+=" contained containedin=htmlTag
-
-" Mixed-case attributes are likely props.
-syntax match svelteKeyword "\<[a-z]\+:[a-zA-Z|]\+=" contained containedin=htmlTag
-
-" The "slot" attribute has special meaning.
-syntax keyword svelteKeyword slot contained containedin=htmlTag
-
-" According to vim-jsx, you can let jsBlock take care of ending the region.
-" https://github.com/mxw/vim-jsx/blob/master/after/syntax/jsx.vim
-syntax region svelteExpression start="{" end="" contains=jsBlock,javascriptBlock containedin=htmlString,htmlTag,htmlArg,htmlValue,htmlH1,htmlH2,htmlH3,htmlH4,htmlH5,htmlH6,htmlHead,htmlTitle,htmlBoldItalicUnderline,htmlUnderlineBold,htmlUnderlineItalicBold,htmlUnderlineBoldItalic,htmlItalicUnderline,htmlItalicBold,htmlItalicBoldUnderline,htmlItalicUnderlineBold,htmlLink,htmlLeadingSpace,htmlBold,htmlBoldUnderline,htmlBoldItalic,htmlBoldUnderlineItalic,htmlUnderline,htmlUnderlineItalic,htmlItalic,htmlStrike,javaScript
-
-syntax region svelteSurroundingTag contained start=+<\(script\|style\|template\)+ end=+>+ fold contains=htmlTagN,htmlString,htmlArg,htmlValue,htmlTagError,htmlEvent
-
-" Block conditionals.
-syntax match svelteConditional "#if" contained containedin=jsBlock,javascriptBlock
-syntax match svelteConditional "/if" contained containedin=jsBlock,javascriptBlock
-syntax match svelteConditional ":else if" contained containedin=jsBlock,javascriptBlock
-syntax match svelteConditional ":else" contained containedin=jsBlock,javascriptBlock
-
-" Block keywords.
-syntax match svelteKeyword "#await" contained containedin=jsBlock,javascriptBlock
-syntax match svelteKeyword "/await" contained containedin=jsBlock,javascriptBlock
-syntax match svelteKeyword ":catch" contained containedin=jsBlock,javascriptBlock
-syntax match svelteKeyword ":then" contained containedin=jsBlock,javascriptBlock
-
-" Inline keywords.
-syntax match svelteKeyword "@html" contained containedin=jsBlock,javascriptBlock
-syntax match svelteKeyword "@debug" contained containedin=jsBlock,javascriptBlock
-
-" Repeat functions.
-syntax match svelteRepeat "#each" contained containedin=jsBlock,javascriptBlock
-syntax match svelteRepeat "/each" contained containedin=jsBlock,javascriptBlock
-
-highlight def link svelteConditional Conditional
-highlight def link svelteKeyword Keyword
-highlight def link svelteRepeat Repeat
-
-" Preprocessed languages that aren't supported out of the box by Svelte require
-" additional syntax files to be pulled in and can slow Vim down a bit. For that
-" reason, preprocessed languages must be enabled manually. Note that some may
-" require additional plugins that contain the actual syntax definitions.
-"
-" Heavily cribbed from https://github.com/posva/vim-vue and largely completed by
-" @davidroeca (thank you!).
-
-" A syntax should be registered if there's a valid syntax definition known to
-" Vim and it is enabled for the Svelte plugin.
-function! s:enabled(language)
- " Check whether a syntax file for {language} exists
- if empty(globpath(&runtimepath, 'syntax/' . a:language . '.vim'))
- return 0
- endif
-
- " If g:svelte_preprocessors is set, check for it there, otherwise return 0.
- if exists('g:svelte_preprocessors') && type(g:svelte_preprocessors) == v:t_list
- return index(g:svelte_preprocessors, a:language) != -1
- else
- return 0
- endif
-endfunction
-
-" Default tag definitions.
-let s:languages = [
- \ { 'name': 'less', 'tag': 'style' },
- \ { 'name': 'scss', 'tag': 'style' },
- \ { 'name': 'sass', 'tag': 'style' },
- \ { 'name': 'stylus', 'tag': 'style' },
- \ { 'name': 'typescript', 'tag': 'script' },
- \ ]
-
-" Add global tag definitions to our defaults.
-if exists('g:svelte_preprocessor_tags') && type('g:svelte_preprocessor_tags') == v:t_list
- let s:languages += g:svelte_preprocessor_tags
-endif
-
-for s:language in s:languages
- let s:attr = '\(lang\|type\)=\("\|''\)[^\2]*' . s:language.name . '[^\2]*\2'
- let s:start = '<' . s:language.tag . '\>\_[^>]*' . s:attr . '\_[^>]*>'
-
- if s:enabled(s:language.name)
- execute 'syntax include @' . s:language.name . ' syntax/' . get(s:language, 'as', s:language.name) . '.vim'
- unlet! b:current_syntax
-
- execute 'syntax region svelte_' . s:language.name
- \ 'keepend'
- \ 'start=/' . s:start . '/'
- \ 'end="</' . s:language.tag . '>"me=s-1'
- \ 'contains=@' . s:language.name . ',svelteSurroundingTag'
- \ 'fold'
- endif
-endfor
-
-" Cybernetically enhanced web apps.
-let b:current_syntax = "svelte"
-
-" Sync from start because of the wacky nesting.
-syntax sync fromstart
-
-endif
diff --git a/syntax/terraform.vim b/syntax/terraform.vim
index 70e948af..8854c0ba 100644
--- a/syntax/terraform.vim
+++ b/syntax/terraform.vim
@@ -18,5429 +18,18 @@ endif
syn case match
-""" data
-syn keyword terraDataTypeBI
- \ aci_access_port_block
- \ aci_access_port_selector
- \ aci_application_epg
- \ aci_application_profile
- \ aci_attachable_access_entity_profile
- \ aci_autonomous_system_profile
- \ aci_bridge_domain
- \ aci_cloud_applicationcontainer
- \ aci_cloud_availability_zone
- \ aci_cloud_aws_provider
- \ aci_cloud_cidr_pool
- \ aci_cloud_context_profile
- \ aci_cloud_domain_profile
- \ aci_cloud_e_pg
- \ aci_cloud_endpoint_selector
- \ aci_cloud_endpoint_selectorfor_external_e_pgs
- \ aci_cloud_external_e_pg
- \ aci_cloud_provider_profile
- \ aci_cloud_providers_region
- \ aci_cloud_subnet
- \ aci_contract
- \ aci_contract_subject
- \ aci_end_point_retention_policy
- \ aci_external_network_instance_profile
- \ aci_filter
- \ aci_filter_entry
- \ aci_interface_fc_policy
- \ aci_l2_interface_policy
- \ aci_l3_ext_subnet
- \ aci_l3_outside
- \ aci_lacp_policy
- \ aci_leaf_access_port_policy_group
- \ aci_leaf_interface_profile
- \ aci_leaf_profile
- \ aci_lldp_interface_policy
- \ aci_logical_interface_profile
- \ aci_logical_node_profile
- \ aci_miscabling_protocol_interface_policy
- \ aci_ospf_interface_policy
- \ aci_pcvpc_interface_policy_group
- \ aci_port_security_policy
- \ aci_subnet
- \ aci_tenant
- \ aci_vlan_encapsulationfor_vxlan_traffic
- \ aci_vmm_domain
- \ aci_vrf
- \ akamai_authorities_set
- \ akamai_contract
- \ akamai_cp_code
- \ akamai_dns_record_set
- \ akamai_group
- \ alicloud_account
- \ alicloud_actiontrails
- \ alicloud_alikafka_consumer_groups
- \ alicloud_alikafka_instances
- \ alicloud_alikafka_sasl_acls
- \ alicloud_alikafka_sasl_users
- \ alicloud_alikafka_topics
- \ alicloud_api_gateway_apis
- \ alicloud_api_gateway_apps
- \ alicloud_api_gateway_groups
- \ alicloud_caller_identity
- \ alicloud_cas_certificates
- \ alicloud_cen_bandwidth_limits
- \ alicloud_cen_bandwidth_packages
- \ alicloud_cen_instances
- \ alicloud_cen_region_route_entries
- \ alicloud_cen_route_entries
- \ alicloud_cloud_connect_networks
- \ alicloud_common_bandwidth_packages
- \ alicloud_cr_namespaces
- \ alicloud_cr_repos
- \ alicloud_cs_kubernetes_clusters
- \ alicloud_cs_managed_kubernetes_clusters
- \ alicloud_cs_serverless_kubernetes_clusters
- \ alicloud_db_instance_classes
- \ alicloud_db_instance_engines
- \ alicloud_db_instances
- \ alicloud_ddosbgp_instances
- \ alicloud_ddoscoo_instances
- \ alicloud_disks
- \ alicloud_dns_domain_groups
- \ alicloud_dns_domain_records
- \ alicloud_dns_domains
- \ alicloud_dns_groups
- \ alicloud_dns_records
- \ alicloud_dns_resolution_lines
- \ alicloud_drds_instances
- \ alicloud_eips
- \ alicloud_elasticsearch_instances
- \ alicloud_emr_disk_types
- \ alicloud_emr_instance_types
- \ alicloud_emr_main_versions
- \ alicloud_ess_scaling_configurations
- \ alicloud_ess_scaling_groups
- \ alicloud_ess_scaling_rules
- \ alicloud_fc_functions
- \ alicloud_fc_services
- \ alicloud_fc_triggers
- \ alicloud_file_crc64_checksum
- \ alicloud_forward_entries
- \ alicloud_gpdb_instances
- \ alicloud_hbase_instances
- \ alicloud_images
- \ alicloud_instance_type_families
- \ alicloud_instance_types
- \ alicloud_instances
- \ alicloud_key_pairs
- \ alicloud_kms_ciphertext
- \ alicloud_kms_keys
- \ alicloud_kms_plaintext
- \ alicloud_kvstore_instance_classes
- \ alicloud_kvstore_instance_engines
- \ alicloud_kvstore_instances
- \ alicloud_market_product
- \ alicloud_market_products
- \ alicloud_mns_queues
- \ alicloud_mns_topic_subscriptions
- \ alicloud_mns_topics
- \ alicloud_mongo_instances
- \ alicloud_mongodb_instances
- \ alicloud_nas_access_groups
- \ alicloud_nas_access_rules
- \ alicloud_nas_file_systems
- \ alicloud_nas_mount_targets
- \ alicloud_nas_protocols
- \ alicloud_nat_gateways
- \ alicloud_network_interfaces
- \ alicloud_ons_groups
- \ alicloud_ons_instances
- \ alicloud_ons_topics
- \ alicloud_oss_bucket_objects
- \ alicloud_oss_buckets
- \ alicloud_ots_instance_attachments
- \ alicloud_ots_instances
- \ alicloud_ots_tables
- \ alicloud_polardb_accounts
- \ alicloud_polardb_clusters
- \ alicloud_polardb_databases
- \ alicloud_polardb_endpoints
- \ alicloud_pvtz_zone_records
- \ alicloud_pvtz_zones
- \ alicloud_ram_account_alias
- \ alicloud_ram_account_aliases
- \ alicloud_ram_groups
- \ alicloud_ram_policies
- \ alicloud_ram_roles
- \ alicloud_ram_users
- \ alicloud_regions
- \ alicloud_route_entries
- \ alicloud_route_tables
- \ alicloud_router_interfaces
- \ alicloud_sag_acls
- \ alicloud_security_group_rules
- \ alicloud_security_groups
- \ alicloud_slb_acls
- \ alicloud_slb_attachments
- \ alicloud_slb_backend_servers
- \ alicloud_slb_ca_certificates
- \ alicloud_slb_domain_extensions
- \ alicloud_slb_listeners
- \ alicloud_slb_master_slave_server_groups
- \ alicloud_slb_rules
- \ alicloud_slb_server_certificates
- \ alicloud_slb_server_groups
- \ alicloud_slbs
- \ alicloud_snapshots
- \ alicloud_snat_entries
- \ alicloud_ssl_vpn_client_certs
- \ alicloud_ssl_vpn_servers
- \ alicloud_vpcs
- \ alicloud_vpn_connections
- \ alicloud_vpn_customer_gateways
- \ alicloud_vpn_gateways
- \ alicloud_vswitches
- \ alicloud_yundun_bastionhost_instances
- \ alicloud_yundun_dbaudit_instance
- \ alicloud_zones
- \ archive_file
- \ avi_actiongroupconfig
- \ avi_alertconfig
- \ avi_alertemailconfig
- \ avi_alertscriptconfig
- \ avi_alertsyslogconfig
- \ avi_analyticsprofile
- \ avi_applicationpersistenceprofile
- \ avi_applicationprofile
- \ avi_authprofile
- \ avi_autoscalelaunchconfig
- \ avi_backup
- \ avi_backupconfiguration
- \ avi_certificatemanagementprofile
- \ avi_cloud
- \ avi_cloudconnectoruser
- \ avi_cloudproperties
- \ avi_cluster
- \ avi_clusterclouddetails
- \ avi_controllerportalregistration
- \ avi_controllerproperties
- \ avi_controllersite
- \ avi_customerportalinfo
- \ avi_customipamdnsprofile
- \ avi_dnspolicy
- \ avi_errorpagebody
- \ avi_errorpageprofile
- \ avi_fileservice
- \ avi_gslb
- \ avi_gslbgeodbprofile
- \ avi_gslbservice
- \ avi_hardwaresecuritymodulegroup
- \ avi_healthmonitor
- \ avi_httppolicyset
- \ avi_image
- \ avi_ipaddrgroup
- \ avi_ipamdnsproviderprofile
- \ avi_l4policyset
- \ avi_microservicegroup
- \ avi_natpolicy
- \ avi_network
- \ avi_networkprofile
- \ avi_networksecuritypolicy
- \ avi_networkservice
- \ avi_objectaccesspolicy
- \ avi_pingaccessagent
- \ avi_pkiprofile
- \ avi_pool
- \ avi_poolgroup
- \ avi_poolgroupdeploymentpolicy
- \ avi_portalfileupload
- \ avi_prioritylabels
- \ avi_protocolparser
- \ avi_role
- \ avi_scheduler
- \ avi_securitypolicy
- \ avi_seproperties
- \ avi_server
- \ avi_serverautoscalepolicy
- \ avi_serviceengine
- \ avi_serviceenginegroup
- \ avi_snmptrapprofile
- \ avi_sslkeyandcertificate
- \ avi_sslprofile
- \ avi_ssopolicy
- \ avi_stringgroup
- \ avi_systemconfiguration
- \ avi_tenant
- \ avi_testsedatastorelevel1
- \ avi_testsedatastorelevel2
- \ avi_testsedatastorelevel3
- \ avi_trafficcloneprofile
- \ avi_upgradestatusinfo
- \ avi_upgradestatussummary
- \ avi_useraccountprofile
- \ avi_virtualservice
- \ avi_vrfcontext
- \ avi_vsdatascriptset
- \ avi_vsvip
- \ avi_wafcrs
- \ avi_wafpolicy
- \ avi_wafpolicypsmgroup
- \ avi_wafprofile
- \ avi_webhook
- \ aviatrix_account
- \ aviatrix_caller_identity
- \ aviatrix_firenet
- \ aviatrix_firenet_vendor_integration
- \ aviatrix_gateway
- \ aviatrix_spoke_gateway
- \ aviatrix_transit_gateway
- \ aws_acm_certificate
- \ aws_acmpca_certificate_authority
- \ aws_alb
- \ aws_alb_listener
- \ aws_alb_target_group
- \ aws_ami
- \ aws_ami_ids
- \ aws_api_gateway_api_key
- \ aws_api_gateway_resource
- \ aws_api_gateway_rest_api
- \ aws_api_gateway_vpc_link
- \ aws_appsync_datasource
- \ aws_arn
- \ aws_autoscaling_group
- \ aws_autoscaling_groups
- \ aws_availability_zone
- \ aws_availability_zones
- \ aws_batch_compute_environment
- \ aws_batch_job_queue
- \ aws_billing_service_account
- \ aws_caller_identity
- \ aws_canonical_user_id
- \ aws_cloudformation_export
- \ aws_cloudformation_stack
- \ aws_cloudhsm_v2_cluster
- \ aws_cloudtrail_service_account
- \ aws_cloudwatch_log_group
- \ aws_codecommit_repository
- \ aws_cognito_user_pools
- \ aws_cur_report_definition
- \ aws_customer_gateway
- \ aws_db_cluster_snapshot
- \ aws_db_event_categories
- \ aws_db_instance
- \ aws_db_snapshot
- \ aws_directory_service_directory
- \ aws_dx_gateway
- \ aws_dynamodb_table
- \ aws_ebs_default_kms_key
- \ aws_ebs_encryption_by_default
- \ aws_ebs_snapshot
- \ aws_ebs_snapshot_ids
- \ aws_ebs_volume
- \ aws_ec2_transit_gateway
- \ aws_ec2_transit_gateway_dx_gateway_attachment
- \ aws_ec2_transit_gateway_route_table
- \ aws_ec2_transit_gateway_vpc_attachment
- \ aws_ec2_transit_gateway_vpn_attachment
- \ aws_ecr_image
- \ aws_ecr_repository
- \ aws_ecs_cluster
- \ aws_ecs_container_definition
- \ aws_ecs_service
- \ aws_ecs_task_definition
- \ aws_efs_file_system
- \ aws_efs_mount_target
- \ aws_eip
- \ aws_eks_cluster
- \ aws_eks_cluster_auth
- \ aws_elastic_beanstalk_application
- \ aws_elastic_beanstalk_hosted_zone
- \ aws_elastic_beanstalk_solution_stack
- \ aws_elasticache_cluster
- \ aws_elasticache_replication_group
- \ aws_elasticsearch_domain
- \ aws_elb
- \ aws_elb_hosted_zone_id
- \ aws_elb_service_account
- \ aws_glue_script
- \ aws_guardduty_detector
- \ aws_iam_account_alias
- \ aws_iam_group
- \ aws_iam_instance_profile
- \ aws_iam_policy
- \ aws_iam_policy_document
- \ aws_iam_role
- \ aws_iam_server_certificate
- \ aws_iam_user
- \ aws_inspector_rules_packages
- \ aws_instance
- \ aws_instances
- \ aws_internet_gateway
- \ aws_iot_endpoint
- \ aws_ip_ranges
- \ aws_kinesis_stream
- \ aws_kms_alias
- \ aws_kms_ciphertext
- \ aws_kms_key
- \ aws_kms_secret
- \ aws_kms_secrets
- \ aws_lambda_function
- \ aws_lambda_invocation
- \ aws_lambda_layer_version
- \ aws_launch_configuration
- \ aws_launch_template
- \ aws_lb
- \ aws_lb_listener
- \ aws_lb_target_group
- \ aws_mq_broker
- \ aws_msk_cluster
- \ aws_msk_configuration
- \ aws_nat_gateway
- \ aws_network_acls
- \ aws_network_interface
- \ aws_network_interfaces
- \ aws_organizations_organization
- \ aws_organizations_organizational_units
- \ aws_partition
- \ aws_prefix_list
- \ aws_pricing_product
- \ aws_qldb_ledger
- \ aws_ram_resource_share
- \ aws_rds_cluster
- \ aws_redshift_cluster
- \ aws_redshift_service_account
- \ aws_region
- \ aws_route
- \ aws_route53_delegation_set
- \ aws_route53_resolver_rule
- \ aws_route53_resolver_rules
- \ aws_route53_zone
- \ aws_route_table
- \ aws_route_tables
- \ aws_s3_bucket
- \ aws_s3_bucket_object
- \ aws_s3_bucket_objects
- \ aws_secretsmanager_secret
- \ aws_secretsmanager_secret_version
- \ aws_security_group
- \ aws_security_groups
- \ aws_servicequotas_service
- \ aws_servicequotas_service_quota
- \ aws_sns_topic
- \ aws_sqs_queue
- \ aws_ssm_document
- \ aws_ssm_parameter
- \ aws_ssm_patch_baseline
- \ aws_storagegateway_local_disk
- \ aws_subnet
- \ aws_subnet_ids
- \ aws_transfer_server
- \ aws_vpc
- \ aws_vpc_dhcp_options
- \ aws_vpc_endpoint
- \ aws_vpc_endpoint_service
- \ aws_vpc_peering_connection
- \ aws_vpcs
- \ aws_vpn_gateway
- \ aws_waf_ipset
- \ aws_waf_rate_based_rule
- \ aws_waf_rule
- \ aws_waf_web_acl
- \ aws_wafregional_ipset
- \ aws_wafregional_rate_based_rule
- \ aws_wafregional_rule
- \ aws_wafregional_web_acl
- \ aws_workspaces_bundle
- \ azurerm_api_management
- \ azurerm_api_management_api
- \ azurerm_api_management_api_version_set
- \ azurerm_api_management_group
- \ azurerm_api_management_product
- \ azurerm_api_management_user
- \ azurerm_app_service
- \ azurerm_app_service_certificate
- \ azurerm_app_service_certificate_order
- \ azurerm_app_service_plan
- \ azurerm_application_insights
- \ azurerm_application_security_group
- \ azurerm_automation_account
- \ azurerm_automation_variable_bool
- \ azurerm_automation_variable_datetime
- \ azurerm_automation_variable_int
- \ azurerm_automation_variable_string
- \ azurerm_availability_set
- \ azurerm_azuread_application
- \ azurerm_batch_account
- \ azurerm_batch_certificate
- \ azurerm_batch_pool
- \ azurerm_builtin_role_definition
- \ azurerm_cdn_profile
- \ azurerm_client_config
- \ azurerm_container_registry
- \ azurerm_cosmosdb_account
- \ azurerm_data_factory
- \ azurerm_dedicated_host
- \ azurerm_dedicated_host_group
- \ azurerm_dev_test_lab
- \ azurerm_disk_encryption_set
- \ azurerm_dns_zone
- \ azurerm_eventgrid_topic
- \ azurerm_eventhub_namespace
- \ azurerm_eventhub_namespace_authorization_rule
- \ azurerm_express_route_circuit
- \ azurerm_firewall
- \ azurerm_hdinsight_cluster
- \ azurerm_healthcare_service
- \ azurerm_image
- \ azurerm_iothub_dps
- \ azurerm_iothub_shared_access_policy
- \ azurerm_key_vault
- \ azurerm_key_vault_access_policy
- \ azurerm_key_vault_key
- \ azurerm_key_vault_secret
- \ azurerm_kubernetes_cluster
- \ azurerm_kubernetes_service_versions
- \ azurerm_lb
- \ azurerm_lb_backend_address_pool
- \ azurerm_logic_app_workflow
- \ azurerm_managed_disk
- \ azurerm_management_group
- \ azurerm_maps_account
- \ azurerm_mariadb_server
- \ azurerm_monitor_action_group
- \ azurerm_monitor_diagnostic_categories
- \ azurerm_mssql_elasticpool
- \ azurerm_nat_gateway
- \ azurerm_netapp_account
- \ azurerm_netapp_pool
- \ azurerm_netapp_volume
- \ azurerm_network_ddos_protection_plan
- \ azurerm_network_interface
- \ azurerm_network_security_group
- \ azurerm_network_watcher
- \ azurerm_notification_hub
- \ azurerm_notification_hub_namespace
- \ azurerm_platform_image
- \ azurerm_policy_definition
- \ azurerm_postgresql_server
- \ azurerm_private_endpoint_connection
- \ azurerm_private_link_endpoint_connection
- \ azurerm_private_link_service
- \ azurerm_private_link_service_endpoint_connections
- \ azurerm_proximity_placement_group
- \ azurerm_public_ip
- \ azurerm_public_ip_prefix
- \ azurerm_public_ips
- \ azurerm_recovery_services_protection_policy_vm
- \ azurerm_recovery_services_vault
- \ azurerm_redis_cache
- \ azurerm_resource_group
- \ azurerm_resources
- \ azurerm_role_definition
- \ azurerm_route_table
- \ azurerm_scheduler_job_collection
- \ azurerm_servicebus_namespace
- \ azurerm_servicebus_namespace_authorization_rule
- \ azurerm_shared_image
- \ azurerm_shared_image_gallery
- \ azurerm_shared_image_version
- \ azurerm_signalr_service
- \ azurerm_snapshot
- \ azurerm_sql_database
- \ azurerm_sql_server
- \ azurerm_storage_account
- \ azurerm_storage_account_blob_container_sas
- \ azurerm_storage_account_sas
- \ azurerm_storage_container
- \ azurerm_storage_management_policy
- \ azurerm_stream_analytics_job
- \ azurerm_subnet
- \ azurerm_subscription
- \ azurerm_subscriptions
- \ azurerm_traffic_manager_geographical_location
- \ azurerm_user_assigned_identity
- \ azurerm_virtual_hub
- \ azurerm_virtual_machine
- \ azurerm_virtual_network
- \ azurerm_virtual_network_gateway
- \ azurerm_virtual_network_gateway_connection
- \ azurestack_client_config
- \ azurestack_network_interface
- \ azurestack_network_security_group
- \ azurestack_platform_image
- \ azurestack_public_ip
- \ azurestack_resource_group
- \ azurestack_route_table
- \ azurestack_storage_account
- \ azurestack_subnet
- \ azurestack_virtual_network
- \ azurestack_virtual_network_gateway
- \ brightbox_database_type
- \ brightbox_image
- \ brightbox_server_group
- \ circonus_account
- \ circonus_collector
- \ cloudflare_ip_ranges
- \ cloudflare_waf_groups
- \ cloudflare_waf_packages
- \ cloudflare_waf_rules
- \ cloudflare_zones
- \ cloudstack_template
- \ consul_acl_auth_method
- \ consul_acl_policy
- \ consul_acl_role
- \ consul_acl_token
- \ consul_acl_token_secret_id
- \ consul_agent_config
- \ consul_agent_self
- \ consul_autopilot_health
- \ consul_catalog_nodes
- \ consul_catalog_service
- \ consul_catalog_services
- \ consul_key_prefix
- \ consul_keys
- \ consul_nodes
- \ consul_service
- \ consul_service_health
- \ consul_services
- \ datadog_ip_ranges
- \ digitalocean_account
- \ digitalocean_certificate
- \ digitalocean_database_cluster
- \ digitalocean_domain
- \ digitalocean_droplet
- \ digitalocean_droplet_snapshot
- \ digitalocean_floating_ip
- \ digitalocean_image
- \ digitalocean_kubernetes_cluster
- \ digitalocean_kubernetes_versions
- \ digitalocean_loadbalancer
- \ digitalocean_record
- \ digitalocean_sizes
- \ digitalocean_ssh_key
- \ digitalocean_tag
- \ digitalocean_volume
- \ digitalocean_volume_snapshot
- \ dns_a_record_set
- \ dns_aaaa_record_set
- \ dns_cname_record_set
- \ dns_mx_record_set
- \ dns_ns_record_set
- \ dns_ptr_record_set
- \ dns_srv_record_set
- \ dns_txt_record_set
- \ docker_network
- \ docker_registry_image
- \ exoscale_compute
- \ exoscale_compute_ipaddress
- \ exoscale_compute_template
- \ exoscale_domain
- \ exoscale_domain_record
- \ external
- \ fastly_ip_ranges
- \ filter
- \ flexibleengine_blockstorage_volume_v2
- \ flexibleengine_cce_cluster_v3
- \ flexibleengine_cce_node_ids_v3
- \ flexibleengine_cce_node_v3
- \ flexibleengine_compute_bms_flavors_v2
- \ flexibleengine_compute_bms_keypairs_v2
- \ flexibleengine_compute_bms_nic_v2
- \ flexibleengine_compute_bms_server_v2
- \ flexibleengine_csbs_backup_policy_v1
- \ flexibleengine_csbs_backup_v1
- \ flexibleengine_cts_tracker_v1
- \ flexibleengine_dcs_az_v1
- \ flexibleengine_dcs_maintainwindow_v1
- \ flexibleengine_dcs_product_v1
- \ flexibleengine_dds_flavor_v3
- \ flexibleengine_dns_zone_v2
- \ flexibleengine_images_image_v2
- \ flexibleengine_kms_data_key_v1
- \ flexibleengine_kms_key_v1
- \ flexibleengine_lb_certificate_v2
- \ flexibleengine_networking_network_v2
- \ flexibleengine_networking_secgroup_v2
- \ flexibleengine_rds_flavors_v1
- \ flexibleengine_rds_flavors_v3
- \ flexibleengine_rts_software_config_v1
- \ flexibleengine_rts_stack_resource_v1
- \ flexibleengine_rts_stack_v1
- \ flexibleengine_s3_bucket_object
- \ flexibleengine_sdrs_domain_v1
- \ flexibleengine_sfs_file_system_v2
- \ flexibleengine_vbs_backup_policy_v2
- \ flexibleengine_vbs_backup_v2
- \ flexibleengine_vpc_peering_connection_v2
- \ flexibleengine_vpc_route_ids_v2
- \ flexibleengine_vpc_route_v2
- \ flexibleengine_vpc_subnet_ids_v1
- \ flexibleengine_vpc_subnet_v1
- \ flexibleengine_vpc_v1
- \ github_collaborators
- \ github_ip_ranges
- \ github_repositories
- \ github_repository
- \ github_team
- \ github_user
- \ gitlab_group
- \ gitlab_project
- \ gitlab_user
- \ gitlab_users
- \ google_active_folder
- \ google_bigquery_default_service_account
- \ google_billing_account
- \ google_client_config
- \ google_client_openid_userinfo
- \ google_cloudfunctions_function
- \ google_composer_image_versions
- \ google_compute_address
- \ google_compute_backend_service
- \ google_compute_default_service_account
- \ google_compute_forwarding_rule
- \ google_compute_global_address
- \ google_compute_image
- \ google_compute_instance
- \ google_compute_instance_group
- \ google_compute_lb_ip_ranges
- \ google_compute_network
- \ google_compute_network_endpoint_group
- \ google_compute_node_types
- \ google_compute_region_instance_group
- \ google_compute_regions
- \ google_compute_resource_policy
- \ google_compute_router
- \ google_compute_ssl_certificate
- \ google_compute_ssl_policy
- \ google_compute_subnetwork
- \ google_compute_vpn_gateway
- \ google_compute_zones
- \ google_container_cluster
- \ google_container_engine_versions
- \ google_container_registry_image
- \ google_container_registry_repository
- \ google_dns_managed_zone
- \ google_folder
- \ google_folder_organization_policy
- \ google_iam_policy
- \ google_iam_role
- \ google_kms_crypto_key
- \ google_kms_crypto_key_version
- \ google_kms_key_ring
- \ google_kms_secret
- \ google_kms_secret_ciphertext
- \ google_monitoring_notification_channel
- \ google_netblock_ip_ranges
- \ google_organization
- \ google_project
- \ google_project_organization_policy
- \ google_project_services
- \ google_projects
- \ google_secret_manager_secret_version
- \ google_service_account
- \ google_service_account_access_token
- \ google_service_account_key
- \ google_sql_ca_certs
- \ google_storage_bucket_object
- \ google_storage_object_signed_url
- \ google_storage_project_service_account
- \ google_storage_transfer_project_service_account
- \ google_tpu_tensorflow_versions
- \ grafana_data_source
- \ gridscale_firewall
- \ gridscale_ipv4
- \ gridscale_ipv6
- \ gridscale_isoimage
- \ gridscale_loadbalancer
- \ gridscale_network
- \ gridscale_object_storage_accesskey
- \ gridscale_paas
- \ gridscale_paas_securityzone
- \ gridscale_public_network
- \ gridscale_server
- \ gridscale_snapshot
- \ gridscale_snapshotschedule
- \ gridscale_sshkey
- \ gridscale_storage
- \ gridscale_template
- \ hcloud_datacenter
- \ hcloud_datacenters
- \ hcloud_floating_ip
- \ hcloud_image
- \ hcloud_location
- \ hcloud_locations
- \ hcloud_network
- \ hcloud_server
- \ hcloud_ssh_key
- \ hcloud_ssh_keys
- \ hcloud_volume
- \ heroku_addon
- \ heroku_app
- \ heroku_space
- \ heroku_space_peering_info
- \ heroku_team
- \ http
- \ huaweicloud_antiddos_v1
- \ huaweicloud_cce_cluster_v3
- \ huaweicloud_cce_node_v3
- \ huaweicloud_cdm_flavors_v1
- \ huaweicloud_compute_availability_zones_v2
- \ huaweicloud_csbs_backup_policy_v1
- \ huaweicloud_csbs_backup_v1
- \ huaweicloud_cts_tracker_v1
- \ huaweicloud_dcs_az_v1
- \ huaweicloud_dcs_maintainwindow_v1
- \ huaweicloud_dcs_product_v1
- \ huaweicloud_dis_partition_v2
- \ huaweicloud_dms_az_v1
- \ huaweicloud_dms_maintainwindow_v1
- \ huaweicloud_dms_product_v1
- \ huaweicloud_iam_role_v3
- \ huaweicloud_identity_role_v3
- \ huaweicloud_images_image_v2
- \ huaweicloud_kms_data_key_v1
- \ huaweicloud_kms_key_v1
- \ huaweicloud_networking_network_v2
- \ huaweicloud_networking_port_v2
- \ huaweicloud_networking_secgroup_v2
- \ huaweicloud_networking_subnet_v2
- \ huaweicloud_rds_flavors_v1
- \ huaweicloud_rds_flavors_v3
- \ huaweicloud_rts_software_config_v1
- \ huaweicloud_rts_stack_resource_v1
- \ huaweicloud_rts_stack_v1
- \ huaweicloud_s3_bucket_object
- \ huaweicloud_sfs_file_system_v2
- \ huaweicloud_vbs_backup_policy_v2
- \ huaweicloud_vbs_backup_v2
- \ huaweicloud_vpc_ids_v1
- \ huaweicloud_vpc_peering_connection_v2
- \ huaweicloud_vpc_route_ids_v2
- \ huaweicloud_vpc_route_v2
- \ huaweicloud_vpc_subnet_ids_v1
- \ huaweicloud_vpc_subnet_v1
- \ huaweicloud_vpc_v1
- \ huaweicloudstack_images_image_v2
- \ huaweicloudstack_networking_network_v2
- \ huaweicloudstack_networking_port_v2
- \ huaweicloudstack_networking_secgroup_v2
- \ huaweicloudstack_networking_subnet_v2
- \ ignition_config
- \ ignition_directory
- \ ignition_disk
- \ ignition_file
- \ ignition_filesystem
- \ ignition_group
- \ ignition_link
- \ ignition_networkd_unit
- \ ignition_raid
- \ ignition_systemd_unit
- \ ignition_user
- \ kubernetes_secret
- \ kubernetes_service
- \ kubernetes_storage_class
- \ launchdarkly_team_member
- \ linode_account
- \ linode_domain
- \ linode_image
- \ linode_instance_type
- \ linode_networking_ip
- \ linode_object_storage_cluster
- \ linode_profile
- \ linode_region
- \ linode_sshkey
- \ linode_user
- \ linode_volume
- \ local_file
- \ logentries_logset
- \ logicmonitor_collectors
- \ logicmonitor_dashboard
- \ logicmonitor_dashboard_group
- \ logicmonitor_device_group
- \ metalcloud_volume_template
- \ mongodbatlas_alert_configuration
- \ mongodbatlas_auditing
- \ mongodbatlas_cloud_provider_snapshot
- \ mongodbatlas_cloud_provider_snapshot_restore_job
- \ mongodbatlas_cloud_provider_snapshot_restore_jobs
- \ mongodbatlas_cloud_provider_snapshots
- \ mongodbatlas_cluster
- \ mongodbatlas_clusters
- \ mongodbatlas_custom_db_role
- \ mongodbatlas_custom_db_roles
- \ mongodbatlas_database_user
- \ mongodbatlas_database_users
- \ mongodbatlas_global_cluster_config
- \ mongodbatlas_maintenance_window
- \ mongodbatlas_network_container
- \ mongodbatlas_network_containers
- \ mongodbatlas_network_peering
- \ mongodbatlas_network_peerings
- \ mongodbatlas_private_endpoint
- \ mongodbatlas_private_endpoint_interface_link
- \ mongodbatlas_project
- \ mongodbatlas_projects
- \ mongodbatlas_team
- \ mongodbatlas_teams
- \ mongodbatlas_x509_authentication_database_user
- \ ncloud_access_control_group
- \ ncloud_access_control_groups
- \ ncloud_access_control_rule
- \ ncloud_access_control_rules
- \ ncloud_member_server_image
- \ ncloud_member_server_images
- \ ncloud_nas_volume
- \ ncloud_nas_volumes
- \ ncloud_port_forwarding_rule
- \ ncloud_port_forwarding_rules
- \ ncloud_public_ip
- \ ncloud_regions
- \ ncloud_root_password
- \ ncloud_server_image
- \ ncloud_server_images
- \ ncloud_server_product
- \ ncloud_server_products
- \ ncloud_zones
- \ newrelic_alert_channel
- \ newrelic_alert_policy
- \ newrelic_application
- \ newrelic_key_transaction
- \ newrelic_plugin
- \ newrelic_plugin_component
- \ newrelic_synthetics_monitor
- \ nomad_acl_policy
- \ nomad_acl_token
- \ nomad_deployments
- \ nomad_job
- \ nomad_namespaces
- \ nomad_regions
- \ ns1_datasource
- \ ns1_dnssec
- \ ns1_zone
- \ nsxt_certificate
- \ nsxt_edge_cluster
- \ nsxt_firewall_section
- \ nsxt_ip_pool
- \ nsxt_logical_tier0_router
- \ nsxt_logical_tier1_router
- \ nsxt_mac_pool
- \ nsxt_ns_group
- \ nsxt_ns_service
- \ nsxt_policy_certificate
- \ nsxt_policy_edge_cluster
- \ nsxt_policy_edge_node
- \ nsxt_policy_ip_discovery_profile
- \ nsxt_policy_ipv6_dad_profile
- \ nsxt_policy_ipv6_ndra_profile
- \ nsxt_policy_lb_app_profile
- \ nsxt_policy_lb_client_ssl_profile
- \ nsxt_policy_lb_monitor
- \ nsxt_policy_lb_persistence_profile
- \ nsxt_policy_lb_server_ssl_profile
- \ nsxt_policy_mac_discovery_profile
- \ nsxt_policy_qos_profile
- \ nsxt_policy_realization_info
- \ nsxt_policy_segment_security_profile
- \ nsxt_policy_service
- \ nsxt_policy_spoofguard_profile
- \ nsxt_policy_tier0_gateway
- \ nsxt_policy_tier1_gateway
- \ nsxt_policy_transport_zone
- \ nsxt_policy_vm
- \ nsxt_policy_vni_pool
- \ nsxt_switching_profile
- \ nsxt_transport_zone
- \ null_data_source
- \ nutanix_category_key
- \ nutanix_cluster
- \ nutanix_clusters
- \ nutanix_image
- \ nutanix_network_security_rule
- \ nutanix_subnet
- \ nutanix_virtual_machine
- \ nutanix_volume_group
- \ nutanix_volume_groups
- \ oci_analytics_analytics_instance
- \ oci_analytics_analytics_instances
- \ oci_apigateway_deployment
- \ oci_apigateway_deployments
- \ oci_apigateway_gateway
- \ oci_apigateway_gateways
- \ oci_audit_configuration
- \ oci_audit_events
- \ oci_autoscaling_auto_scaling_configuration
- \ oci_autoscaling_auto_scaling_configurations
- \ oci_budget_alert_rule
- \ oci_budget_alert_rules
- \ oci_budget_budget
- \ oci_budget_budgets
- \ oci_containerengine_cluster_kube_config
- \ oci_containerengine_cluster_option
- \ oci_containerengine_clusters
- \ oci_containerengine_node_pool
- \ oci_containerengine_node_pool_option
- \ oci_containerengine_node_pools
- \ oci_containerengine_work_request_errors
- \ oci_containerengine_work_request_log_entries
- \ oci_containerengine_work_requests
- \ oci_core_app_catalog_listing
- \ oci_core_app_catalog_listing_resource_version
- \ oci_core_app_catalog_listing_resource_versions
- \ oci_core_app_catalog_listings
- \ oci_core_app_catalog_subscriptions
- \ oci_core_boot_volume
- \ oci_core_boot_volume_attachments
- \ oci_core_boot_volume_backup
- \ oci_core_boot_volume_backups
- \ oci_core_boot_volumes
- \ oci_core_cluster_network
- \ oci_core_cluster_network_instances
- \ oci_core_cluster_networks
- \ oci_core_console_histories
- \ oci_core_console_history_data
- \ oci_core_cpes
- \ oci_core_cross_connect
- \ oci_core_cross_connect_group
- \ oci_core_cross_connect_groups
- \ oci_core_cross_connect_locations
- \ oci_core_cross_connect_port_speed_shapes
- \ oci_core_cross_connect_status
- \ oci_core_cross_connects
- \ oci_core_dedicated_vm_host
- \ oci_core_dedicated_vm_host_instance_shapes
- \ oci_core_dedicated_vm_host_shapes
- \ oci_core_dedicated_vm_hosts
- \ oci_core_dedicated_vm_hosts_instances
- \ oci_core_dhcp_options
- \ oci_core_drg_attachments
- \ oci_core_drgs
- \ oci_core_fast_connect_provider_service
- \ oci_core_fast_connect_provider_service_key
- \ oci_core_fast_connect_provider_services
- \ oci_core_images
- \ oci_core_instance
- \ oci_core_instance_configuration
- \ oci_core_instance_configurations
- \ oci_core_instance_console_connections
- \ oci_core_instance_credentials
- \ oci_core_instance_devices
- \ oci_core_instance_pool
- \ oci_core_instance_pool_instances
- \ oci_core_instance_pool_load_balancer_attachment
- \ oci_core_instance_pools
- \ oci_core_instances
- \ oci_core_internet_gateways
- \ oci_core_ipsec_config
- \ oci_core_ipsec_connection_tunnel
- \ oci_core_ipsec_connection_tunnels
- \ oci_core_ipsec_connections
- \ oci_core_ipsec_status
- \ oci_core_letter_of_authority
- \ oci_core_listing_resource_version
- \ oci_core_listing_resource_versions
- \ oci_core_local_peering_gateways
- \ oci_core_nat_gateway
- \ oci_core_nat_gateways
- \ oci_core_network_security_group
- \ oci_core_network_security_group_security_rules
- \ oci_core_network_security_group_vnics
- \ oci_core_network_security_groups
- \ oci_core_peer_region_for_remote_peerings
- \ oci_core_private_ip
- \ oci_core_private_ips
- \ oci_core_public_ip
- \ oci_core_public_ips
- \ oci_core_remote_peering_connections
- \ oci_core_route_tables
- \ oci_core_security_lists
- \ oci_core_service_gateways
- \ oci_core_services
- \ oci_core_shape
- \ oci_core_shapes
- \ oci_core_subnet
- \ oci_core_subnets
- \ oci_core_vcn
- \ oci_core_vcns
- \ oci_core_virtual_circuit
- \ oci_core_virtual_circuit_bandwidth_shapes
- \ oci_core_virtual_circuit_public_prefixes
- \ oci_core_virtual_circuits
- \ oci_core_vnic
- \ oci_core_vnic_attachments
- \ oci_core_volume
- \ oci_core_volume_attachments
- \ oci_core_volume_backup_policies
- \ oci_core_volume_backup_policy_assignments
- \ oci_core_volume_backups
- \ oci_core_volume_group_backups
- \ oci_core_volume_groups
- \ oci_core_volumes
- \ oci_database_autonomous_container_database
- \ oci_database_autonomous_container_databases
- \ oci_database_autonomous_data_warehouse
- \ oci_database_autonomous_data_warehouse_backup
- \ oci_database_autonomous_data_warehouse_backups
- \ oci_database_autonomous_data_warehouse_wallet
- \ oci_database_autonomous_data_warehouses
- \ oci_database_autonomous_database
- \ oci_database_autonomous_database_backup
- \ oci_database_autonomous_database_backups
- \ oci_database_autonomous_database_instance_wallet_management
- \ oci_database_autonomous_database_regional_wallet_management
- \ oci_database_autonomous_database_wallet
- \ oci_database_autonomous_databases
- \ oci_database_autonomous_db_preview_versions
- \ oci_database_autonomous_exadata_infrastructure
- \ oci_database_autonomous_exadata_infrastructure_ocpu
- \ oci_database_autonomous_exadata_infrastructure_shapes
- \ oci_database_autonomous_exadata_infrastructures
- \ oci_database_backup_destination
- \ oci_database_backup_destinations
- \ oci_database_backups
- \ oci_database_data_guard_association
- \ oci_database_data_guard_associations
- \ oci_database_database
- \ oci_database_databases
- \ oci_database_db_home
- \ oci_database_db_home_patch_history_entries
- \ oci_database_db_home_patches
- \ oci_database_db_homes
- \ oci_database_db_node
- \ oci_database_db_nodes
- \ oci_database_db_system_patch_history_entries
- \ oci_database_db_system_patches
- \ oci_database_db_system_shapes
- \ oci_database_db_systems
- \ oci_database_db_versions
- \ oci_database_exadata_infrastructure
- \ oci_database_exadata_infrastructure_download_config_file
- \ oci_database_exadata_infrastructures
- \ oci_database_exadata_iorm_config
- \ oci_database_gi_versions
- \ oci_database_maintenance_run
- \ oci_database_maintenance_runs
- \ oci_database_vm_cluster
- \ oci_database_vm_cluster_network
- \ oci_database_vm_cluster_network_download_config_file
- \ oci_database_vm_cluster_networks
- \ oci_database_vm_cluster_recommended_network
- \ oci_database_vm_clusters
- \ oci_datacatalog_catalog
- \ oci_datacatalog_catalog_type
- \ oci_datacatalog_catalog_types
- \ oci_datacatalog_catalogs
- \ oci_datacatalog_connection
- \ oci_datacatalog_connections
- \ oci_datacatalog_data_asset
- \ oci_datacatalog_data_assets
- \ oci_dataflow_application
- \ oci_dataflow_applications
- \ oci_dataflow_invoke_run
- \ oci_dataflow_invoke_runs
- \ oci_dataflow_run_log
- \ oci_dataflow_run_logs
- \ oci_datascience_model
- \ oci_datascience_model_provenance
- \ oci_datascience_models
- \ oci_datascience_notebook_session
- \ oci_datascience_notebook_session_shapes
- \ oci_datascience_notebook_sessions
- \ oci_datascience_project
- \ oci_datascience_projects
- \ oci_dns_records
- \ oci_dns_steering_policies
- \ oci_dns_steering_policy
- \ oci_dns_steering_policy_attachment
- \ oci_dns_steering_policy_attachments
- \ oci_dns_tsig_key
- \ oci_dns_tsig_keys
- \ oci_dns_zones
- \ oci_email_sender
- \ oci_email_senders
- \ oci_email_suppression
- \ oci_email_suppressions
- \ oci_events_rule
- \ oci_events_rules
- \ oci_file_storage_export_sets
- \ oci_file_storage_exports
- \ oci_file_storage_file_systems
- \ oci_file_storage_mount_targets
- \ oci_file_storage_snapshot
- \ oci_file_storage_snapshots
- \ oci_functions_application
- \ oci_functions_applications
- \ oci_functions_function
- \ oci_functions_functions
- \ oci_health_checks_http_monitor
- \ oci_health_checks_http_monitors
- \ oci_health_checks_http_probe_results
- \ oci_health_checks_ping_monitor
- \ oci_health_checks_ping_monitors
- \ oci_health_checks_ping_probe_results
- \ oci_health_checks_vantage_points
- \ oci_identity_api_keys
- \ oci_identity_auth_tokens
- \ oci_identity_authentication_policy
- \ oci_identity_availability_domain
- \ oci_identity_availability_domains
- \ oci_identity_compartment
- \ oci_identity_compartments
- \ oci_identity_cost_tracking_tags
- \ oci_identity_customer_secret_keys
- \ oci_identity_dynamic_groups
- \ oci_identity_fault_domains
- \ oci_identity_group
- \ oci_identity_groups
- \ oci_identity_identity_provider_groups
- \ oci_identity_identity_providers
- \ oci_identity_idp_group_mappings
- \ oci_identity_policies
- \ oci_identity_region_subscriptions
- \ oci_identity_regions
- \ oci_identity_smtp_credentials
- \ oci_identity_swift_passwords
- \ oci_identity_tag_default
- \ oci_identity_tag_defaults
- \ oci_identity_tag_namespaces
- \ oci_identity_tags
- \ oci_identity_tenancy
- \ oci_identity_ui_password
- \ oci_identity_user
- \ oci_identity_user_group_memberships
- \ oci_identity_users
- \ oci_integration_integration_instance
- \ oci_integration_integration_instances
- \ oci_kms_decrypted_data
- \ oci_kms_encrypted_data
- \ oci_kms_key
- \ oci_kms_key_version
- \ oci_kms_key_versions
- \ oci_kms_keys
- \ oci_kms_vault
- \ oci_kms_vaults
- \ oci_limits_limit_definitions
- \ oci_limits_limit_values
- \ oci_limits_quota
- \ oci_limits_quotas
- \ oci_limits_resource_availability
- \ oci_limits_services
- \ oci_load_balancer_backend_health
- \ oci_load_balancer_backend_set_health
- \ oci_load_balancer_backend_sets
- \ oci_load_balancer_backends
- \ oci_load_balancer_backendsets
- \ oci_load_balancer_certificates
- \ oci_load_balancer_health
- \ oci_load_balancer_hostnames
- \ oci_load_balancer_listener_rules
- \ oci_load_balancer_load_balancers
- \ oci_load_balancer_path_route_sets
- \ oci_load_balancer_policies
- \ oci_load_balancer_protocols
- \ oci_load_balancer_rule_set
- \ oci_load_balancer_rule_sets
- \ oci_load_balancer_shapes
- \ oci_load_balancers
- \ oci_marketplace_accepted_agreement
- \ oci_marketplace_accepted_agreements
- \ oci_marketplace_categories
- \ oci_marketplace_listing
- \ oci_marketplace_listing_package
- \ oci_marketplace_listing_package_agreements
- \ oci_marketplace_listing_packages
- \ oci_marketplace_listings
- \ oci_marketplace_publishers
- \ oci_monitoring_alarm
- \ oci_monitoring_alarm_history_collection
- \ oci_monitoring_alarm_statuses
- \ oci_monitoring_alarms
- \ oci_monitoring_metric_data
- \ oci_monitoring_metrics
- \ oci_objectstorage_bucket
- \ oci_objectstorage_bucket_summaries
- \ oci_objectstorage_namespace
- \ oci_objectstorage_namespace_metadata
- \ oci_objectstorage_object
- \ oci_objectstorage_object_head
- \ oci_objectstorage_object_lifecycle_policy
- \ oci_objectstorage_objects
- \ oci_objectstorage_preauthrequest
- \ oci_objectstorage_preauthrequests
- \ oci_oce_oce_instance
- \ oci_oce_oce_instances
- \ oci_oda_oda_instance
- \ oci_oda_oda_instances
- \ oci_ons_notification_topic
- \ oci_ons_notification_topics
- \ oci_ons_subscription
- \ oci_ons_subscriptions
- \ oci_osmanagement_managed_instance
- \ oci_osmanagement_managed_instance_group
- \ oci_osmanagement_managed_instance_groups
- \ oci_osmanagement_managed_instances
- \ oci_osmanagement_software_source
- \ oci_osmanagement_software_sources
- \ oci_resourcemanager_stack
- \ oci_resourcemanager_stack_tf_state
- \ oci_resourcemanager_stacks
- \ oci_streaming_connect_harness
- \ oci_streaming_connect_harnesses
- \ oci_streaming_stream
- \ oci_streaming_stream_archiver
- \ oci_streaming_stream_pool
- \ oci_streaming_stream_pools
- \ oci_streaming_streams
- \ oci_waas_address_list
- \ oci_waas_address_lists
- \ oci_waas_certificate
- \ oci_waas_certificates
- \ oci_waas_custom_protection_rule
- \ oci_waas_custom_protection_rules
- \ oci_waas_edge_subnets
- \ oci_waas_http_redirect
- \ oci_waas_http_redirects
- \ oci_waas_waas_policies
- \ oci_waas_waas_policy
- \ okta_app
- \ okta_app_metadata_saml
- \ okta_app_saml
- \ okta_default_policy
- \ okta_everyone_group
- \ okta_group
- \ okta_idp_metadata_saml
- \ okta_idp_saml
- \ okta_policy
- \ okta_user
- \ okta_users
- \ oneandone_instance_size
- \ opc_compute_image_list_entry
- \ opc_compute_ip_address_reservation
- \ opc_compute_ip_reservation
- \ opc_compute_machine_image
- \ opc_compute_network_interface
- \ opc_compute_ssh_key
- \ opc_compute_storage_volume_snapshot
- \ opc_compute_vnic
- \ openstack_blockstorage_availability_zones_v3
- \ openstack_blockstorage_snapshot_v2
- \ openstack_blockstorage_snapshot_v3
- \ openstack_blockstorage_volume_v2
- \ openstack_blockstorage_volume_v3
- \ openstack_compute_availability_zones_v2
- \ openstack_compute_flavor_v2
- \ openstack_compute_keypair_v2
- \ openstack_containerinfra_cluster_v1
- \ openstack_containerinfra_clustertemplate_v1
- \ openstack_dns_zone_v2
- \ openstack_fw_policy_v1
- \ openstack_identity_auth_scope_v3
- \ openstack_identity_endpoint_v3
- \ openstack_identity_group_v3
- \ openstack_identity_project_v3
- \ openstack_identity_role_v3
- \ openstack_identity_service_v3
- \ openstack_identity_user_v3
- \ openstack_images_image_v2
- \ openstack_keymanager_container_v1
- \ openstack_keymanager_secret_v1
- \ openstack_networking_addressscope_v2
- \ openstack_networking_floatingip_v2
- \ openstack_networking_network_v2
- \ openstack_networking_port_ids_v2
- \ openstack_networking_port_v2
- \ openstack_networking_qos_bandwidth_limit_rule_v2
- \ openstack_networking_qos_dscp_marking_rule_v2
- \ openstack_networking_qos_minimum_bandwidth_rule_v2
- \ openstack_networking_qos_policy_v2
- \ openstack_networking_router_v2
- \ openstack_networking_secgroup_v2
- \ openstack_networking_subnet_v2
- \ openstack_networking_subnetpool_v2
- \ openstack_networking_trunk_v2
- \ openstack_sharedfilesystem_availability_zones_v2
- \ openstack_sharedfilesystem_share_v2
- \ openstack_sharedfilesystem_sharenetwork_v2
- \ openstack_sharedfilesystem_snapshot_v2
- \ opentelekomcloud_antiddos_v1
- \ opentelekomcloud_cce_cluster_v3
- \ opentelekomcloud_cce_node_ids_v3
- \ opentelekomcloud_cce_node_v3
- \ opentelekomcloud_compute_bms_flavors_v2
- \ opentelekomcloud_compute_bms_keypairs_v2
- \ opentelekomcloud_compute_bms_nic_v2
- \ opentelekomcloud_compute_bms_server_v2
- \ opentelekomcloud_csbs_backup_policy_v1
- \ opentelekomcloud_csbs_backup_v1
- \ opentelekomcloud_cts_tracker_v1
- \ opentelekomcloud_dcs_az_v1
- \ opentelekomcloud_dcs_maintainwindow_v1
- \ opentelekomcloud_dcs_product_v1
- \ opentelekomcloud_deh_host_v1
- \ opentelekomcloud_deh_server_v1
- \ opentelekomcloud_identity_group_v3
- \ opentelekomcloud_identity_project_v3
- \ opentelekomcloud_identity_role_v3
- \ opentelekomcloud_identity_user_v3
- \ opentelekomcloud_images_image_v2
- \ opentelekomcloud_kms_data_key_v1
- \ opentelekomcloud_kms_key_v1
- \ opentelekomcloud_networking_network_v2
- \ opentelekomcloud_networking_port_v2
- \ opentelekomcloud_networking_secgroup_v2
- \ opentelekomcloud_rds_flavors_v1
- \ opentelekomcloud_rds_flavors_v3
- \ opentelekomcloud_rts_software_config_v1
- \ opentelekomcloud_rts_software_deployment_v1
- \ opentelekomcloud_rts_stack_resource_v1
- \ opentelekomcloud_rts_stack_v1
- \ opentelekomcloud_s3_bucket_object
- \ opentelekomcloud_sdrs_domain_v1
- \ opentelekomcloud_sfs_file_system_v2
- \ opentelekomcloud_vbs_backup_policy_v2
- \ opentelekomcloud_vbs_backup_v2
- \ opentelekomcloud_vpc_peering_connection_v2
- \ opentelekomcloud_vpc_route_ids_v2
- \ opentelekomcloud_vpc_route_v2
- \ opentelekomcloud_vpc_subnet_ids_v1
- \ opentelekomcloud_vpc_subnet_v1
- \ opentelekomcloud_vpc_v1
- \ opsgenie_escalation
- \ opsgenie_heartbeat
- \ opsgenie_schedule
- \ opsgenie_team
- \ opsgenie_user
- \ oraclepaas_database_service_instance
- \ ovh_cloud_region
- \ ovh_cloud_regions
- \ ovh_dedicated_installation_templates
- \ ovh_dedicated_server
- \ ovh_dedicated_server_boots
- \ ovh_dedicated_servers
- \ ovh_domain_zone
- \ ovh_iploadbalancing
- \ ovh_iploadbalancing_vrack_network
- \ ovh_iploadbalancing_vrack_networks
- \ ovh_me_installation_template
- \ ovh_me_installation_templates
- \ ovh_me_paymentmean_bankaccount
- \ ovh_me_paymentmean_creditcard
- \ ovh_me_ssh_key
- \ ovh_me_ssh_keys
- \ ovh_publiccloud_region
- \ ovh_publiccloud_regions
- \ ovh_vracks
- \ packet_device
- \ packet_ip_block_ranges
- \ packet_operating_system
- \ packet_organization
- \ packet_precreated_ip_block
- \ packet_project
- \ packet_spot_market_price
- \ packet_spot_market_request
- \ packet_volume
- \ pagerduty_escalation_policy
- \ pagerduty_extension_schema
- \ pagerduty_schedule
- \ pagerduty_service
- \ pagerduty_team
- \ pagerduty_user
- \ pagerduty_vendor
- \ panos_dhcp_interface_info
- \ panos_panorama_plugin
- \ panos_system_info
- \ profitbricks_datacenter
- \ profitbricks_image
- \ profitbricks_location
- \ profitbricks_resource
- \ profitbricks_snapshot
- \ pureport_accounts
- \ pureport_aws_connection
- \ pureport_azure_connection
- \ pureport_cloud_regions
- \ pureport_cloud_services
- \ pureport_connections
- \ pureport_google_cloud_connection
- \ pureport_locations
- \ pureport_networks
- \ pureport_site_vpn_connection
- \ rancher2_app
- \ rancher2_catalog
- \ rancher2_certificate
- \ rancher2_cloud_credential
- \ rancher2_cluster
- \ rancher2_cluster_alert_group
- \ rancher2_cluster_alert_rule
- \ rancher2_cluster_driver
- \ rancher2_cluster_logging
- \ rancher2_cluster_role_template_binding
- \ rancher2_cluster_template
- \ rancher2_etcd_backup
- \ rancher2_global_role_binding
- \ rancher2_multi_cluster_app
- \ rancher2_namespace
- \ rancher2_node_driver
- \ rancher2_node_pool
- \ rancher2_node_template
- \ rancher2_notifier
- \ rancher2_project
- \ rancher2_project_alert_group
- \ rancher2_project_alert_rule
- \ rancher2_project_logging
- \ rancher2_project_role_template_binding
- \ rancher2_registry
- \ rancher2_role_template
- \ rancher2_secret
- \ rancher2_setting
- \ rancher2_user
- \ rancher_certificate
- \ rancher_environment
- \ rancher_setting
- \ rightscale_cloud
- \ rightscale_credential
- \ rightscale_datacenter
- \ rightscale_deployment
- \ rightscale_image
- \ rightscale_instance
- \ rightscale_instance_type
- \ rightscale_multi_cloud_image
- \ rightscale_network
- \ rightscale_network_gateway
- \ rightscale_route_table
- \ rightscale_security_group
- \ rightscale_server
- \ rightscale_server_template
- \ rightscale_ssh_key
- \ rightscale_subnet
- \ rightscale_volume
- \ rightscale_volume_snapshot
- \ rightscale_volume_type
- \ runscope_bucket
- \ runscope_buckets
- \ runscope_integration
- \ runscope_integrations
- \ scaffolding_data_source
- \ scaleway_account_ssh_key
- \ scaleway_baremetal_offer_beta
- \ scaleway_bootscript
- \ scaleway_image
- \ scaleway_instance_image
- \ scaleway_instance_security_group
- \ scaleway_instance_server
- \ scaleway_instance_volume
- \ scaleway_marketplace_image_beta
- \ scaleway_security_group
- \ scaleway_volume
- \ skytap_project
- \ skytap_template
- \ telefonicaopencloud_csbs_backup_policy_v1
- \ telefonicaopencloud_csbs_backup_v1
- \ telefonicaopencloud_cts_tracker_v1
- \ telefonicaopencloud_dcs_az_v1
- \ telefonicaopencloud_dcs_maintainwindow_v1
- \ telefonicaopencloud_dcs_product_v1
- \ telefonicaopencloud_dns_zone_v2
- \ telefonicaopencloud_networking_network_v2
- \ telefonicaopencloud_networking_secgroup_v2
- \ telefonicaopencloud_networking_subnet_v2
- \ telefonicaopencloud_rds_flavors_v1
- \ telefonicaopencloud_rts_software_config_v1
- \ telefonicaopencloud_rts_stack_resource_v1
- \ telefonicaopencloud_rts_stack_v1
- \ telefonicaopencloud_s3_bucket_object
- \ telefonicaopencloud_sfs_file_system_v2
- \ telefonicaopencloud_vbs_backup_policy_v2
- \ telefonicaopencloud_vbs_backup_v2
- \ telefonicaopencloud_vpc_subnet_ids_v1
- \ telefonicaopencloud_vpc_subnet_v1
- \ telefonicaopencloud_vpc_v1
- \ template_cloudinit_config
- \ template_file
- \ tencentcloud_as_scaling_configs
- \ tencentcloud_as_scaling_groups
- \ tencentcloud_as_scaling_policies
- \ tencentcloud_availability_zones
- \ tencentcloud_cam_group_memberships
- \ tencentcloud_cam_group_policy_attachments
- \ tencentcloud_cam_groups
- \ tencentcloud_cam_policies
- \ tencentcloud_cam_role_policy_attachments
- \ tencentcloud_cam_roles
- \ tencentcloud_cam_saml_providers
- \ tencentcloud_cam_user_policy_attachments
- \ tencentcloud_cam_users
- \ tencentcloud_cbs_snapshot_policies
- \ tencentcloud_cbs_snapshots
- \ tencentcloud_cbs_storages
- \ tencentcloud_ccn_bandwidth_limits
- \ tencentcloud_ccn_instances
- \ tencentcloud_cfs_access_groups
- \ tencentcloud_cfs_access_rules
- \ tencentcloud_cfs_file_systems
- \ tencentcloud_clb_attachments
- \ tencentcloud_clb_instances
- \ tencentcloud_clb_listener_rules
- \ tencentcloud_clb_listeners
- \ tencentcloud_clb_redirections
- \ tencentcloud_container_cluster_instances
- \ tencentcloud_container_clusters
- \ tencentcloud_cos_bucket_object
- \ tencentcloud_cos_buckets
- \ tencentcloud_dayu_cc_http_policies
- \ tencentcloud_dayu_cc_https_policies
- \ tencentcloud_dayu_ddos_policies
- \ tencentcloud_dayu_ddos_policy_attachments
- \ tencentcloud_dayu_ddos_policy_cases
- \ tencentcloud_dayu_l4_rules
- \ tencentcloud_dayu_l7_rules
- \ tencentcloud_dc_gateway_ccn_routes
- \ tencentcloud_dc_gateway_instances
- \ tencentcloud_dc_instances
- \ tencentcloud_dcx_instances
- \ tencentcloud_dnats
- \ tencentcloud_eip
- \ tencentcloud_eips
- \ tencentcloud_enis
- \ tencentcloud_gaap_certificates
- \ tencentcloud_gaap_domain_error_pages
- \ tencentcloud_gaap_http_domains
- \ tencentcloud_gaap_http_rules
- \ tencentcloud_gaap_layer4_listeners
- \ tencentcloud_gaap_layer7_listeners
- \ tencentcloud_gaap_proxies
- \ tencentcloud_gaap_realservers
- \ tencentcloud_gaap_security_policies
- \ tencentcloud_gaap_security_rules
- \ tencentcloud_ha_vip_eip_attachments
- \ tencentcloud_ha_vips
- \ tencentcloud_image
- \ tencentcloud_images
- \ tencentcloud_instance_types
- \ tencentcloud_instances
- \ tencentcloud_key_pairs
- \ tencentcloud_kubernetes_clusters
- \ tencentcloud_mongodb_instances
- \ tencentcloud_mongodb_zone_config
- \ tencentcloud_mysql_backup_list
- \ tencentcloud_mysql_instance
- \ tencentcloud_mysql_parameter_list
- \ tencentcloud_mysql_zone_config
- \ tencentcloud_nat_gateways
- \ tencentcloud_nats
- \ tencentcloud_placement_groups
- \ tencentcloud_redis_instances
- \ tencentcloud_redis_zone_config
- \ tencentcloud_reserved_instance_configs
- \ tencentcloud_reserved_instances
- \ tencentcloud_route_table
- \ tencentcloud_scf_functions
- \ tencentcloud_scf_logs
- \ tencentcloud_scf_namespaces
- \ tencentcloud_security_group
- \ tencentcloud_security_groups
- \ tencentcloud_ssl_certificates
- \ tencentcloud_subnet
- \ tencentcloud_tcaplus_applications
- \ tencentcloud_tcaplus_idls
- \ tencentcloud_tcaplus_tables
- \ tencentcloud_tcaplus_zones
- \ tencentcloud_vpc
- \ tencentcloud_vpc_instances
- \ tencentcloud_vpc_route_tables
- \ tencentcloud_vpc_subnets
- \ tencentcloud_vpn_connections
- \ tencentcloud_vpn_customer_gateways
- \ tencentcloud_vpn_gateways
- \ terraform_remote_state
- \ test_data_source
- \ test_provider_label
- \ tfe_ssh_key
- \ tfe_team
- \ tfe_team_access
- \ tfe_workspace
- \ tfe_workspace_ids
- \ tls_public_key
- \ triton_account
- \ triton_datacenter
- \ triton_fabric_network
- \ triton_fabric_vlan
- \ triton_image
- \ triton_network
- \ triton_package
- \ ucloud_db_instances
- \ ucloud_disks
- \ ucloud_eips
- \ ucloud_images
- \ ucloud_instances
- \ ucloud_lb_attachments
- \ ucloud_lb_listeners
- \ ucloud_lb_rules
- \ ucloud_lb_ssls
- \ ucloud_lbs
- \ ucloud_projects
- \ ucloud_security_groups
- \ ucloud_subnets
- \ ucloud_vpcs
- \ ucloud_zones
- \ vsphere_compute_cluster
- \ vsphere_custom_attribute
- \ vsphere_datacenter
- \ vsphere_datastore
- \ vsphere_datastore_cluster
- \ vsphere_distributed_virtual_switch
- \ vsphere_folder
- \ vsphere_host
- \ vsphere_network
- \ vsphere_resource_pool
- \ vsphere_storage_policy
- \ vsphere_tag
- \ vsphere_tag_category
- \ vsphere_vapp_container
- \ vsphere_virtual_machine
- \ vsphere_vmfs_disks
- \ vultr_account
- \ vultr_api_key
- \ vultr_application
- \ vultr_backup
- \ vultr_bare_metal_plan
- \ vultr_bare_metal_server
- \ vultr_block_storage
- \ vultr_dns_domain
- \ vultr_firewall_group
- \ vultr_iso_private
- \ vultr_iso_public
- \ vultr_network
- \ vultr_os
- \ vultr_plan
- \ vultr_region
- \ vultr_reserved_ip
- \ vultr_server
- \ vultr_snapshot
- \ vultr_ssh_key
- \ vultr_startup_script
- \ vultr_user
- \ yandex_compute_disk
- \ yandex_compute_image
- \ yandex_compute_instance
- \ yandex_compute_instance_group
- \ yandex_compute_snapshot
- \ yandex_container_registry
- \ yandex_dataproc_cluster
- \ yandex_iam_policy
- \ yandex_iam_role
- \ yandex_iam_service_account
- \ yandex_iam_user
- \ yandex_kubernetes_cluster
- \ yandex_kubernetes_node_group
- \ yandex_lb_network_load_balancer
- \ yandex_lb_target_group
- \ yandex_mdb_clickhouse_cluster
- \ yandex_mdb_mongodb_cluster
- \ yandex_mdb_mysql_cluster
- \ yandex_mdb_postgresql_cluster
- \ yandex_mdb_redis_cluster
- \ yandex_resourcemanager_cloud
- \ yandex_resourcemanager_folder
- \ yandex_vpc_network
- \ yandex_vpc_route_table
- \ yandex_vpc_subnet
-""" end data sources
+" A block is introduced by a type, some number of labels - which are either
+" strings or identifiers - and an opening curly brace. Match the type.
+syn match terraBlockIntroduction /^\s*\zs\K\k*\ze\s\+\(\("\K\k*"\|\K\k*\)\s\+\)*{/ contains=terraBlockType
+syn keyword terraBlockType contained data locals module output provider resource terraform variable
-""" resource
-syn keyword terraResourceTypeBI
- \ aci_access_port_block
- \ aci_access_port_selector
- \ aci_application_epg
- \ aci_application_profile
- \ aci_attachable_access_entity_profile
- \ aci_autonomous_system_profile
- \ aci_bridge_domain
- \ aci_cloud_applicationcontainer
- \ aci_cloud_availability_zone
- \ aci_cloud_aws_provider
- \ aci_cloud_cidr_pool
- \ aci_cloud_context_profile
- \ aci_cloud_domain_profile
- \ aci_cloud_e_pg
- \ aci_cloud_endpoint_selector
- \ aci_cloud_endpoint_selectorfor_external_e_pgs
- \ aci_cloud_external_e_pg
- \ aci_cloud_provider_profile
- \ aci_cloud_providers_region
- \ aci_cloud_subnet
- \ aci_contract
- \ aci_contract_subject
- \ aci_end_point_retention_policy
- \ aci_external_network_instance_profile
- \ aci_filter
- \ aci_filter_entry
- \ aci_interface_fc_policy
- \ aci_l2_interface_policy
- \ aci_l3_ext_subnet
- \ aci_l3_outside
- \ aci_lacp_policy
- \ aci_leaf_access_port_policy_group
- \ aci_leaf_interface_profile
- \ aci_leaf_profile
- \ aci_lldp_interface_policy
- \ aci_logical_interface_profile
- \ aci_logical_node_profile
- \ aci_miscabling_protocol_interface_policy
- \ aci_ospf_interface_policy
- \ aci_pcvpc_interface_policy_group
- \ aci_port_security_policy
- \ aci_rest
- \ aci_subnet
- \ aci_tenant
- \ aci_vlan_encapsulationfor_vxlan_traffic
- \ aci_vmm_domain
- \ aci_vrf
- \ acme_certificate
- \ acme_registration
- \ akamai_cp_code
- \ akamai_dns_record
- \ akamai_dns_zone
- \ akamai_edge_hostname
- \ akamai_property
- \ akamai_property_activation
- \ akamai_property_rules
- \ akamai_property_variables
- \ alicloud_actiontrail
- \ alicloud_alikafka_consumer_group
- \ alicloud_alikafka_instance
- \ alicloud_alikafka_sasl_acl
- \ alicloud_alikafka_sasl_user
- \ alicloud_alikafka_topic
- \ alicloud_api_gateway_api
- \ alicloud_api_gateway_app
- \ alicloud_api_gateway_app_attachment
- \ alicloud_api_gateway_group
- \ alicloud_api_gateway_vpc_access
- \ alicloud_cas_certificate
- \ alicloud_cdn_domain
- \ alicloud_cdn_domain_config
- \ alicloud_cdn_domain_new
- \ alicloud_cen_bandwidth_limit
- \ alicloud_cen_bandwidth_package
- \ alicloud_cen_bandwidth_package_attachment
- \ alicloud_cen_instance
- \ alicloud_cen_instance_attachment
- \ alicloud_cen_instance_grant
- \ alicloud_cen_route_entry
- \ alicloud_cloud_connect_network
- \ alicloud_cloud_connect_network_attachment
- \ alicloud_cloud_connect_network_grant
- \ alicloud_cms_alarm
- \ alicloud_common_bandwidth_package
- \ alicloud_common_bandwidth_package_attachment
- \ alicloud_container_cluster
- \ alicloud_copy_image
- \ alicloud_cr_namespace
- \ alicloud_cr_repo
- \ alicloud_cs_application
- \ alicloud_cs_kubernetes
- \ alicloud_cs_kubernetes_autoscaler
- \ alicloud_cs_managed_kubernetes
- \ alicloud_cs_serverless_kubernetes
- \ alicloud_cs_swarm
- \ alicloud_datahub_project
- \ alicloud_datahub_subscription
- \ alicloud_datahub_topic
- \ alicloud_db_account
- \ alicloud_db_account_privilege
- \ alicloud_db_backup_policy
- \ alicloud_db_connection
- \ alicloud_db_database
- \ alicloud_db_instance
- \ alicloud_db_read_write_splitting_connection
- \ alicloud_db_readonly_instance
- \ alicloud_ddosbgp_instance
- \ alicloud_ddoscoo_instance
- \ alicloud_disk
- \ alicloud_disk_attachment
- \ alicloud_dns
- \ alicloud_dns_group
- \ alicloud_dns_record
- \ alicloud_drds_instance
- \ alicloud_eip
- \ alicloud_eip_association
- \ alicloud_elasticsearch_instance
- \ alicloud_emr_cluster
- \ alicloud_ess_alarm
- \ alicloud_ess_attachment
- \ alicloud_ess_lifecycle_hook
- \ alicloud_ess_notification
- \ alicloud_ess_scaling_configuration
- \ alicloud_ess_scaling_group
- \ alicloud_ess_scaling_rule
- \ alicloud_ess_scalinggroup_vserver_groups
- \ alicloud_ess_schedule
- \ alicloud_ess_scheduled_task
- \ alicloud_fc_function
- \ alicloud_fc_service
- \ alicloud_fc_trigger
- \ alicloud_forward_entry
- \ alicloud_gpdb_connection
- \ alicloud_gpdb_instance
- \ alicloud_havip
- \ alicloud_havip_attachment
- \ alicloud_hbase_instance
- \ alicloud_image
- \ alicloud_image_copy
- \ alicloud_image_export
- \ alicloud_image_import
- \ alicloud_image_share_permission
- \ alicloud_instance
- \ alicloud_key_pair
- \ alicloud_key_pair_attachment
- \ alicloud_kms_ciphertext
- \ alicloud_kms_key
- \ alicloud_kvstore_account
- \ alicloud_kvstore_backup_policy
- \ alicloud_kvstore_instance
- \ alicloud_launch_template
- \ alicloud_log_machine_group
- \ alicloud_log_project
- \ alicloud_log_store
- \ alicloud_log_store_index
- \ alicloud_logtail_attachment
- \ alicloud_logtail_config
- \ alicloud_market_order
- \ alicloud_mns_queue
- \ alicloud_mns_topic
- \ alicloud_mns_topic_subscription
- \ alicloud_mongodb_instance
- \ alicloud_mongodb_sharding_instance
- \ alicloud_nas_access_group
- \ alicloud_nas_access_rule
- \ alicloud_nas_file_system
- \ alicloud_nas_mount_target
- \ alicloud_nat_gateway
- \ alicloud_network_acl
- \ alicloud_network_acl_attachment
- \ alicloud_network_acl_entries
- \ alicloud_network_interface
- \ alicloud_network_interface_attachment
- \ alicloud_ons_group
- \ alicloud_ons_instance
- \ alicloud_ons_topic
- \ alicloud_oss_bucket
- \ alicloud_oss_bucket_object
- \ alicloud_ots_instance
- \ alicloud_ots_instance_attachment
- \ alicloud_ots_table
- \ alicloud_polardb_account
- \ alicloud_polardb_account_privilege
- \ alicloud_polardb_backup_policy
- \ alicloud_polardb_cluster
- \ alicloud_polardb_database
- \ alicloud_polardb_endpoint_address
- \ alicloud_pvtz_zone
- \ alicloud_pvtz_zone_attachment
- \ alicloud_pvtz_zone_record
- \ alicloud_ram_access_key
- \ alicloud_ram_account_alias
- \ alicloud_ram_account_password_policy
- \ alicloud_ram_alias
- \ alicloud_ram_group
- \ alicloud_ram_group_membership
- \ alicloud_ram_group_policy_attachment
- \ alicloud_ram_login_profile
- \ alicloud_ram_policy
- \ alicloud_ram_role
- \ alicloud_ram_role_attachment
- \ alicloud_ram_role_policy_attachment
- \ alicloud_ram_user
- \ alicloud_ram_user_policy_attachment
- \ alicloud_reserved_instance
- \ alicloud_route_entry
- \ alicloud_route_table
- \ alicloud_route_table_attachment
- \ alicloud_router_interface
- \ alicloud_router_interface_connection
- \ alicloud_sag_acl
- \ alicloud_sag_acl_rule
- \ alicloud_sag_client_user
- \ alicloud_sag_dnat_entry
- \ alicloud_sag_qos
- \ alicloud_sag_qos_car
- \ alicloud_sag_qos_policy
- \ alicloud_sag_snat_entry
- \ alicloud_security_group
- \ alicloud_security_group_rule
- \ alicloud_slb
- \ alicloud_slb_acl
- \ alicloud_slb_attachment
- \ alicloud_slb_backend_server
- \ alicloud_slb_ca_certificate
- \ alicloud_slb_domain_extension
- \ alicloud_slb_listener
- \ alicloud_slb_master_slave_server_group
- \ alicloud_slb_rule
- \ alicloud_slb_server_certificate
- \ alicloud_slb_server_group
- \ alicloud_snapshot
- \ alicloud_snapshot_policy
- \ alicloud_snat_entry
- \ alicloud_ssl_vpn_client_cert
- \ alicloud_ssl_vpn_server
- \ alicloud_subnet
- \ alicloud_vpc
- \ alicloud_vpn_connection
- \ alicloud_vpn_customer_gateway
- \ alicloud_vpn_gateway
- \ alicloud_vpn_route_entry
- \ alicloud_vswitch
- \ alicloud_yundun_bastionhost_instance
- \ alicloud_yundun_dbaudit_instance
- \ arukas_container
- \ auth0_resource_server
- \ avi_actiongroupconfig
- \ avi_alertconfig
- \ avi_alertemailconfig
- \ avi_alertscriptconfig
- \ avi_alertsyslogconfig
- \ avi_analyticsprofile
- \ avi_applicationpersistenceprofile
- \ avi_applicationprofile
- \ avi_authprofile
- \ avi_autoscalelaunchconfig
- \ avi_backup
- \ avi_backupconfiguration
- \ avi_certificatemanagementprofile
- \ avi_cloud
- \ avi_cloudconnectoruser
- \ avi_cloudproperties
- \ avi_cluster
- \ avi_clusterclouddetails
- \ avi_controllerportalregistration
- \ avi_controllerproperties
- \ avi_controllersite
- \ avi_customerportalinfo
- \ avi_customipamdnsprofile
- \ avi_dnspolicy
- \ avi_errorpagebody
- \ avi_errorpageprofile
- \ avi_fileservice
- \ avi_gslb
- \ avi_gslbgeodbprofile
- \ avi_gslbservice
- \ avi_hardwaresecuritymodulegroup
- \ avi_healthmonitor
- \ avi_httppolicyset
- \ avi_image
- \ avi_ipaddrgroup
- \ avi_ipamdnsproviderprofile
- \ avi_l4policyset
- \ avi_microservicegroup
- \ avi_natpolicy
- \ avi_network
- \ avi_networkprofile
- \ avi_networksecuritypolicy
- \ avi_networkservice
- \ avi_objectaccesspolicy
- \ avi_pingaccessagent
- \ avi_pkiprofile
- \ avi_pool
- \ avi_poolgroup
- \ avi_poolgroupdeploymentpolicy
- \ avi_portalfileupload
- \ avi_prioritylabels
- \ avi_protocolparser
- \ avi_role
- \ avi_scheduler
- \ avi_securitypolicy
- \ avi_seproperties
- \ avi_server
- \ avi_serverautoscalepolicy
- \ avi_serviceengine
- \ avi_serviceenginegroup
- \ avi_snmptrapprofile
- \ avi_sslkeyandcertificate
- \ avi_sslprofile
- \ avi_ssopolicy
- \ avi_stringgroup
- \ avi_systemconfiguration
- \ avi_tenant
- \ avi_testsedatastorelevel1
- \ avi_testsedatastorelevel2
- \ avi_testsedatastorelevel3
- \ avi_trafficcloneprofile
- \ avi_upgradestatusinfo
- \ avi_upgradestatussummary
- \ avi_useraccount
- \ avi_useraccountprofile
- \ avi_virtualservice
- \ avi_vrfcontext
- \ avi_vsdatascriptset
- \ avi_vsvip
- \ avi_wafcrs
- \ avi_wafpolicy
- \ avi_wafpolicypsmgroup
- \ avi_wafprofile
- \ avi_webhook
- \ aviatrix_account
- \ aviatrix_account_user
- \ aviatrix_arm_peer
- \ aviatrix_aws_peer
- \ aviatrix_aws_tgw
- \ aviatrix_aws_tgw_directconnect
- \ aviatrix_aws_tgw_vpc_attachment
- \ aviatrix_aws_tgw_vpn_conn
- \ aviatrix_controller_config
- \ aviatrix_firenet
- \ aviatrix_firewall
- \ aviatrix_firewall_instance
- \ aviatrix_firewall_tag
- \ aviatrix_fqdn
- \ aviatrix_gateway
- \ aviatrix_gateway_dnat
- \ aviatrix_gateway_snat
- \ aviatrix_geo_vpn
- \ aviatrix_saml_endpoint
- \ aviatrix_site2cloud
- \ aviatrix_spoke_gateway
- \ aviatrix_spoke_vpc
- \ aviatrix_trans_peer
- \ aviatrix_transit_gateway
- \ aviatrix_transit_gateway_peering
- \ aviatrix_transit_vpc
- \ aviatrix_tunnel
- \ aviatrix_vgw_conn
- \ aviatrix_vpc
- \ aviatrix_vpn_profile
- \ aviatrix_vpn_user
- \ aviatrix_vpn_user_accelerator
- \ aws_accessanalyzer_analyzer
- \ aws_acm_certificate
- \ aws_acm_certificate_validation
- \ aws_acmpca_certificate_authority
- \ aws_alb
- \ aws_alb_listener
- \ aws_alb_listener_certificate
- \ aws_alb_listener_rule
- \ aws_alb_target_group
- \ aws_alb_target_group_attachment
- \ aws_ami
- \ aws_ami_copy
- \ aws_ami_from_instance
- \ aws_ami_launch_permission
- \ aws_api_gateway_account
- \ aws_api_gateway_api_key
- \ aws_api_gateway_authorizer
- \ aws_api_gateway_base_path_mapping
- \ aws_api_gateway_client_certificate
- \ aws_api_gateway_deployment
- \ aws_api_gateway_documentation_part
- \ aws_api_gateway_documentation_version
- \ aws_api_gateway_domain_name
- \ aws_api_gateway_gateway_response
- \ aws_api_gateway_integration
- \ aws_api_gateway_integration_response
- \ aws_api_gateway_method
- \ aws_api_gateway_method_response
- \ aws_api_gateway_method_settings
- \ aws_api_gateway_model
- \ aws_api_gateway_request_validator
- \ aws_api_gateway_resource
- \ aws_api_gateway_rest_api
- \ aws_api_gateway_stage
- \ aws_api_gateway_usage_plan
- \ aws_api_gateway_usage_plan_key
- \ aws_api_gateway_vpc_link
- \ aws_app_cookie_stickiness_policy
- \ aws_appautoscaling_policy
- \ aws_appautoscaling_scheduled_action
- \ aws_appautoscaling_target
- \ aws_appmesh_mesh
- \ aws_appmesh_route
- \ aws_appmesh_virtual_node
- \ aws_appmesh_virtual_router
- \ aws_appmesh_virtual_service
- \ aws_appsync_api_key
- \ aws_appsync_datasource
- \ aws_appsync_function
- \ aws_appsync_graphql_api
- \ aws_appsync_resolver
- \ aws_athena_database
- \ aws_athena_named_query
- \ aws_athena_workgroup
- \ aws_autoscaling_attachment
- \ aws_autoscaling_group
- \ aws_autoscaling_lifecycle_hook
- \ aws_autoscaling_notification
- \ aws_autoscaling_policy
- \ aws_autoscaling_schedule
- \ aws_backup_plan
- \ aws_backup_selection
- \ aws_backup_vault
- \ aws_batch_compute_environment
- \ aws_batch_job_definition
- \ aws_batch_job_queue
- \ aws_budgets_budget
- \ aws_cloud9_environment_ec2
- \ aws_cloudformation_stack
- \ aws_cloudformation_stack_set
- \ aws_cloudformation_stack_set_instance
- \ aws_cloudfront_distribution
- \ aws_cloudfront_origin_access_identity
- \ aws_cloudfront_public_key
- \ aws_cloudhsm_v2_cluster
- \ aws_cloudhsm_v2_hsm
- \ aws_cloudtrail
- \ aws_cloudwatch_dashboard
- \ aws_cloudwatch_event_permission
- \ aws_cloudwatch_event_rule
- \ aws_cloudwatch_event_target
- \ aws_cloudwatch_log_destination
- \ aws_cloudwatch_log_destination_policy
- \ aws_cloudwatch_log_group
- \ aws_cloudwatch_log_metric_filter
- \ aws_cloudwatch_log_resource_policy
- \ aws_cloudwatch_log_stream
- \ aws_cloudwatch_log_subscription_filter
- \ aws_cloudwatch_metric_alarm
- \ aws_codebuild_project
- \ aws_codebuild_source_credential
- \ aws_codebuild_webhook
- \ aws_codecommit_repository
- \ aws_codecommit_trigger
- \ aws_codedeploy_app
- \ aws_codedeploy_deployment_config
- \ aws_codedeploy_deployment_group
- \ aws_codepipeline
- \ aws_codepipeline_webhook
- \ aws_cognito_identity_pool
- \ aws_cognito_identity_pool_roles_attachment
- \ aws_cognito_identity_provider
- \ aws_cognito_resource_server
- \ aws_cognito_user_group
- \ aws_cognito_user_pool
- \ aws_cognito_user_pool_client
- \ aws_cognito_user_pool_domain
- \ aws_config_aggregate_authorization
- \ aws_config_config_rule
- \ aws_config_configuration_aggregator
- \ aws_config_configuration_recorder
- \ aws_config_configuration_recorder_status
- \ aws_config_delivery_channel
- \ aws_config_organization_custom_rule
- \ aws_config_organization_managed_rule
- \ aws_cur_report_definition
- \ aws_customer_gateway
- \ aws_datapipeline_pipeline
- \ aws_datasync_agent
- \ aws_datasync_location_efs
- \ aws_datasync_location_nfs
- \ aws_datasync_location_s3
- \ aws_datasync_location_smb
- \ aws_datasync_task
- \ aws_dax_cluster
- \ aws_dax_parameter_group
- \ aws_dax_subnet_group
- \ aws_db_cluster_snapshot
- \ aws_db_event_subscription
- \ aws_db_instance
- \ aws_db_instance_role_association
- \ aws_db_option_group
- \ aws_db_parameter_group
- \ aws_db_security_group
- \ aws_db_snapshot
- \ aws_db_subnet_group
- \ aws_default_network_acl
- \ aws_default_route_table
- \ aws_default_security_group
- \ aws_default_subnet
- \ aws_default_vpc
- \ aws_default_vpc_dhcp_options
- \ aws_devicefarm_project
- \ aws_directory_service_conditional_forwarder
- \ aws_directory_service_directory
- \ aws_directory_service_log_subscription
- \ aws_dlm_lifecycle_policy
- \ aws_dms_certificate
- \ aws_dms_endpoint
- \ aws_dms_replication_instance
- \ aws_dms_replication_subnet_group
- \ aws_dms_replication_task
- \ aws_docdb_cluster
- \ aws_docdb_cluster_instance
- \ aws_docdb_cluster_parameter_group
- \ aws_docdb_cluster_snapshot
- \ aws_docdb_subnet_group
- \ aws_dx_bgp_peer
- \ aws_dx_connection
- \ aws_dx_connection_association
- \ aws_dx_gateway
- \ aws_dx_gateway_association
- \ aws_dx_gateway_association_proposal
- \ aws_dx_hosted_private_virtual_interface
- \ aws_dx_hosted_private_virtual_interface_accepter
- \ aws_dx_hosted_public_virtual_interface
- \ aws_dx_hosted_public_virtual_interface_accepter
- \ aws_dx_hosted_transit_virtual_interface
- \ aws_dx_hosted_transit_virtual_interface_accepter
- \ aws_dx_lag
- \ aws_dx_private_virtual_interface
- \ aws_dx_public_virtual_interface
- \ aws_dx_transit_virtual_interface
- \ aws_dynamodb_global_table
- \ aws_dynamodb_table
- \ aws_dynamodb_table_item
- \ aws_ebs_default_kms_key
- \ aws_ebs_encryption_by_default
- \ aws_ebs_snapshot
- \ aws_ebs_snapshot_copy
- \ aws_ebs_volume
- \ aws_ec2_capacity_reservation
- \ aws_ec2_client_vpn_endpoint
- \ aws_ec2_client_vpn_network_association
- \ aws_ec2_fleet
- \ aws_ec2_transit_gateway
- \ aws_ec2_transit_gateway_route
- \ aws_ec2_transit_gateway_route_table
- \ aws_ec2_transit_gateway_route_table_association
- \ aws_ec2_transit_gateway_route_table_propagation
- \ aws_ec2_transit_gateway_vpc_attachment
- \ aws_ec2_transit_gateway_vpc_attachment_accepter
- \ aws_ecr_lifecycle_policy
- \ aws_ecr_repository
- \ aws_ecr_repository_policy
- \ aws_ecs_capacity_provider
- \ aws_ecs_cluster
- \ aws_ecs_service
- \ aws_ecs_task_definition
- \ aws_efs_file_system
- \ aws_efs_mount_target
- \ aws_egress_only_internet_gateway
- \ aws_eip
- \ aws_eip_association
- \ aws_eks_cluster
- \ aws_eks_fargate_profile
- \ aws_eks_node_group
- \ aws_elastic_beanstalk_application
- \ aws_elastic_beanstalk_application_version
- \ aws_elastic_beanstalk_configuration_template
- \ aws_elastic_beanstalk_environment
- \ aws_elasticache_cluster
- \ aws_elasticache_parameter_group
- \ aws_elasticache_replication_group
- \ aws_elasticache_security_group
- \ aws_elasticache_subnet_group
- \ aws_elasticsearch_domain
- \ aws_elasticsearch_domain_policy
- \ aws_elastictranscoder_pipeline
- \ aws_elastictranscoder_preset
- \ aws_elb
- \ aws_elb_attachment
- \ aws_emr_cluster
- \ aws_emr_instance_group
- \ aws_emr_security_configuration
- \ aws_flow_log
- \ aws_fms_admin_account
- \ aws_fsx_lustre_file_system
- \ aws_fsx_windows_file_system
- \ aws_gamelift_alias
- \ aws_gamelift_build
- \ aws_gamelift_fleet
- \ aws_gamelift_game_session_queue
- \ aws_glacier_vault
- \ aws_glacier_vault_lock
- \ aws_globalaccelerator_accelerator
- \ aws_globalaccelerator_endpoint_group
- \ aws_globalaccelerator_listener
- \ aws_glue_catalog_database
- \ aws_glue_catalog_table
- \ aws_glue_classifier
- \ aws_glue_connection
- \ aws_glue_crawler
- \ aws_glue_job
- \ aws_glue_security_configuration
- \ aws_glue_trigger
- \ aws_glue_workflow
- \ aws_guardduty_detector
- \ aws_guardduty_invite_accepter
- \ aws_guardduty_ipset
- \ aws_guardduty_member
- \ aws_guardduty_threatintelset
- \ aws_iam_access_key
- \ aws_iam_account_alias
- \ aws_iam_account_password_policy
- \ aws_iam_group
- \ aws_iam_group_membership
- \ aws_iam_group_policy
- \ aws_iam_group_policy_attachment
- \ aws_iam_instance_profile
- \ aws_iam_openid_connect_provider
- \ aws_iam_policy
- \ aws_iam_policy_attachment
- \ aws_iam_role
- \ aws_iam_role_policy
- \ aws_iam_role_policy_attachment
- \ aws_iam_saml_provider
- \ aws_iam_server_certificate
- \ aws_iam_service_linked_role
- \ aws_iam_user
- \ aws_iam_user_group_membership
- \ aws_iam_user_login_profile
- \ aws_iam_user_policy
- \ aws_iam_user_policy_attachment
- \ aws_iam_user_ssh_key
- \ aws_inspector_assessment_target
- \ aws_inspector_assessment_template
- \ aws_inspector_resource_group
- \ aws_instance
- \ aws_internet_gateway
- \ aws_iot_certificate
- \ aws_iot_policy
- \ aws_iot_policy_attachment
- \ aws_iot_role_alias
- \ aws_iot_thing
- \ aws_iot_thing_principal_attachment
- \ aws_iot_thing_type
- \ aws_iot_topic_rule
- \ aws_key_pair
- \ aws_kinesis_analytics_application
- \ aws_kinesis_firehose_delivery_stream
- \ aws_kinesis_stream
- \ aws_kms_alias
- \ aws_kms_ciphertext
- \ aws_kms_external_key
- \ aws_kms_grant
- \ aws_kms_key
- \ aws_lambda_alias
- \ aws_lambda_event_source_mapping
- \ aws_lambda_function
- \ aws_lambda_function_event_invoke_config
- \ aws_lambda_layer_version
- \ aws_lambda_permission
- \ aws_lambda_provisioned_concurrency_config
- \ aws_launch_configuration
- \ aws_launch_template
- \ aws_lb
- \ aws_lb_cookie_stickiness_policy
- \ aws_lb_listener
- \ aws_lb_listener_certificate
- \ aws_lb_listener_rule
- \ aws_lb_ssl_negotiation_policy
- \ aws_lb_target_group
- \ aws_lb_target_group_attachment
- \ aws_licensemanager_association
- \ aws_licensemanager_license_configuration
- \ aws_lightsail_domain
- \ aws_lightsail_instance
- \ aws_lightsail_key_pair
- \ aws_lightsail_static_ip
- \ aws_lightsail_static_ip_attachment
- \ aws_load_balancer_backend_server_policy
- \ aws_load_balancer_listener_policy
- \ aws_load_balancer_policy
- \ aws_macie_member_account_association
- \ aws_macie_s3_bucket_association
- \ aws_main_route_table_association
- \ aws_media_convert_queue
- \ aws_media_package_channel
- \ aws_media_store_container
- \ aws_media_store_container_policy
- \ aws_mq_broker
- \ aws_mq_configuration
- \ aws_msk_cluster
- \ aws_msk_configuration
- \ aws_nat_gateway
- \ aws_neptune_cluster
- \ aws_neptune_cluster_instance
- \ aws_neptune_cluster_parameter_group
- \ aws_neptune_cluster_snapshot
- \ aws_neptune_event_subscription
- \ aws_neptune_parameter_group
- \ aws_neptune_subnet_group
- \ aws_network_acl
- \ aws_network_acl_rule
- \ aws_network_interface
- \ aws_network_interface_attachment
- \ aws_network_interface_sg_attachment
- \ aws_opsworks_application
- \ aws_opsworks_custom_layer
- \ aws_opsworks_ganglia_layer
- \ aws_opsworks_haproxy_layer
- \ aws_opsworks_instance
- \ aws_opsworks_java_app_layer
- \ aws_opsworks_memcached_layer
- \ aws_opsworks_mysql_layer
- \ aws_opsworks_nodejs_app_layer
- \ aws_opsworks_permission
- \ aws_opsworks_php_app_layer
- \ aws_opsworks_rails_app_layer
- \ aws_opsworks_rds_db_instance
- \ aws_opsworks_stack
- \ aws_opsworks_static_web_layer
- \ aws_opsworks_user_profile
- \ aws_organizations_account
- \ aws_organizations_organization
- \ aws_organizations_organizational_unit
- \ aws_organizations_policy
- \ aws_organizations_policy_attachment
- \ aws_pinpoint_adm_channel
- \ aws_pinpoint_apns_channel
- \ aws_pinpoint_apns_sandbox_channel
- \ aws_pinpoint_apns_voip_channel
- \ aws_pinpoint_apns_voip_sandbox_channel
- \ aws_pinpoint_app
- \ aws_pinpoint_baidu_channel
- \ aws_pinpoint_email_channel
- \ aws_pinpoint_event_stream
- \ aws_pinpoint_gcm_channel
- \ aws_pinpoint_sms_channel
- \ aws_placement_group
- \ aws_proxy_protocol_policy
- \ aws_qldb_ledger
- \ aws_quicksight_group
- \ aws_quicksight_user
- \ aws_ram_principal_association
- \ aws_ram_resource_association
- \ aws_ram_resource_share
- \ aws_ram_resource_share_accepter
- \ aws_rds_cluster
- \ aws_rds_cluster_endpoint
- \ aws_rds_cluster_instance
- \ aws_rds_cluster_parameter_group
- \ aws_rds_global_cluster
- \ aws_redshift_cluster
- \ aws_redshift_event_subscription
- \ aws_redshift_parameter_group
- \ aws_redshift_security_group
- \ aws_redshift_snapshot_copy_grant
- \ aws_redshift_snapshot_schedule
- \ aws_redshift_snapshot_schedule_association
- \ aws_redshift_subnet_group
- \ aws_resourcegroups_group
- \ aws_route
- \ aws_route53_delegation_set
- \ aws_route53_health_check
- \ aws_route53_query_log
- \ aws_route53_record
- \ aws_route53_resolver_endpoint
- \ aws_route53_resolver_rule
- \ aws_route53_resolver_rule_association
- \ aws_route53_zone
- \ aws_route53_zone_association
- \ aws_route_table
- \ aws_route_table_association
- \ aws_s3_account_public_access_block
- \ aws_s3_bucket
- \ aws_s3_bucket_inventory
- \ aws_s3_bucket_metric
- \ aws_s3_bucket_notification
- \ aws_s3_bucket_object
- \ aws_s3_bucket_policy
- \ aws_s3_bucket_public_access_block
- \ aws_sagemaker_endpoint
- \ aws_sagemaker_endpoint_configuration
- \ aws_sagemaker_model
- \ aws_sagemaker_notebook_instance
- \ aws_sagemaker_notebook_instance_lifecycle_configuration
- \ aws_secretsmanager_secret
- \ aws_secretsmanager_secret_version
- \ aws_security_group
- \ aws_security_group_rule
- \ aws_securityhub_account
- \ aws_securityhub_product_subscription
- \ aws_securityhub_standards_subscription
- \ aws_service_discovery_http_namespace
- \ aws_service_discovery_private_dns_namespace
- \ aws_service_discovery_public_dns_namespace
- \ aws_service_discovery_service
- \ aws_servicecatalog_portfolio
- \ aws_servicequotas_service_quota
- \ aws_ses_active_receipt_rule_set
- \ aws_ses_configuration_set
- \ aws_ses_domain_dkim
- \ aws_ses_domain_identity
- \ aws_ses_domain_identity_verification
- \ aws_ses_domain_mail_from
- \ aws_ses_email_identity
- \ aws_ses_event_destination
- \ aws_ses_identity_notification_topic
- \ aws_ses_identity_policy
- \ aws_ses_receipt_filter
- \ aws_ses_receipt_rule
- \ aws_ses_receipt_rule_set
- \ aws_ses_template
- \ aws_sfn_activity
- \ aws_sfn_state_machine
- \ aws_shield_protection
- \ aws_simpledb_domain
- \ aws_snapshot_create_volume_permission
- \ aws_sns_platform_application
- \ aws_sns_sms_preferences
- \ aws_sns_topic
- \ aws_sns_topic_policy
- \ aws_sns_topic_subscription
- \ aws_spot_datafeed_subscription
- \ aws_spot_fleet_request
- \ aws_spot_instance_request
- \ aws_sqs_queue
- \ aws_sqs_queue_policy
- \ aws_ssm_activation
- \ aws_ssm_association
- \ aws_ssm_document
- \ aws_ssm_maintenance_window
- \ aws_ssm_maintenance_window_target
- \ aws_ssm_maintenance_window_task
- \ aws_ssm_parameter
- \ aws_ssm_patch_baseline
- \ aws_ssm_patch_group
- \ aws_ssm_resource_data_sync
- \ aws_storagegateway_cache
- \ aws_storagegateway_cached_iscsi_volume
- \ aws_storagegateway_gateway
- \ aws_storagegateway_nfs_file_share
- \ aws_storagegateway_smb_file_share
- \ aws_storagegateway_upload_buffer
- \ aws_storagegateway_working_storage
- \ aws_subnet
- \ aws_swf_domain
- \ aws_transfer_server
- \ aws_transfer_ssh_key
- \ aws_transfer_user
- \ aws_volume_attachment
- \ aws_vpc
- \ aws_vpc_dhcp_options
- \ aws_vpc_dhcp_options_association
- \ aws_vpc_endpoint
- \ aws_vpc_endpoint_connection_notification
- \ aws_vpc_endpoint_route_table_association
- \ aws_vpc_endpoint_service
- \ aws_vpc_endpoint_service_allowed_principal
- \ aws_vpc_endpoint_subnet_association
- \ aws_vpc_ipv4_cidr_block_association
- \ aws_vpc_peering_connection
- \ aws_vpc_peering_connection_accepter
- \ aws_vpc_peering_connection_options
- \ aws_vpn_connection
- \ aws_vpn_connection_route
- \ aws_vpn_gateway
- \ aws_vpn_gateway_attachment
- \ aws_vpn_gateway_route_propagation
- \ aws_waf_byte_match_set
- \ aws_waf_geo_match_set
- \ aws_waf_ipset
- \ aws_waf_rate_based_rule
- \ aws_waf_regex_match_set
- \ aws_waf_regex_pattern_set
- \ aws_waf_rule
- \ aws_waf_rule_group
- \ aws_waf_size_constraint_set
- \ aws_waf_sql_injection_match_set
- \ aws_waf_web_acl
- \ aws_waf_xss_match_set
- \ aws_wafregional_byte_match_set
- \ aws_wafregional_geo_match_set
- \ aws_wafregional_ipset
- \ aws_wafregional_rate_based_rule
- \ aws_wafregional_regex_match_set
- \ aws_wafregional_regex_pattern_set
- \ aws_wafregional_rule
- \ aws_wafregional_rule_group
- \ aws_wafregional_size_constraint_set
- \ aws_wafregional_sql_injection_match_set
- \ aws_wafregional_web_acl
- \ aws_wafregional_web_acl_association
- \ aws_wafregional_xss_match_set
- \ aws_worklink_fleet
- \ aws_worklink_website_certificate_authority_association
- \ aws_workspaces_directory
- \ aws_workspaces_ip_group
- \ aws_xray_sampling_rule
- \ azure_affinity_group
- \ azure_data_disk
- \ azure_dns_server
- \ azure_hosted_service
- \ azure_instance
- \ azure_local_network_connection
- \ azure_security_group
- \ azure_security_group_rule
- \ azure_sql_database_server
- \ azure_sql_database_server_firewall_rule
- \ azure_sql_database_service
- \ azure_storage_blob
- \ azure_storage_container
- \ azure_storage_queue
- \ azure_storage_service
- \ azure_virtual_network
- \ azuread_application
- \ azuread_application_password
- \ azuread_group
- \ azuread_group_member
- \ azuread_service_principal
- \ azuread_service_principal_password
- \ azuread_user
- \ azurerm_advanced_threat_protection
- \ azurerm_analysis_services_server
- \ azurerm_api_management
- \ azurerm_api_management_api
- \ azurerm_api_management_api_operation
- \ azurerm_api_management_api_operation_policy
- \ azurerm_api_management_api_policy
- \ azurerm_api_management_api_schema
- \ azurerm_api_management_api_version_set
- \ azurerm_api_management_authorization_server
- \ azurerm_api_management_backend
- \ azurerm_api_management_certificate
- \ azurerm_api_management_diagnostic
- \ azurerm_api_management_group
- \ azurerm_api_management_group_user
- \ azurerm_api_management_identity_provider_aad
- \ azurerm_api_management_identity_provider_facebook
- \ azurerm_api_management_identity_provider_google
- \ azurerm_api_management_identity_provider_microsoft
- \ azurerm_api_management_identity_provider_twitter
- \ azurerm_api_management_logger
- \ azurerm_api_management_openid_connect_provider
- \ azurerm_api_management_product
- \ azurerm_api_management_product_api
- \ azurerm_api_management_product_group
- \ azurerm_api_management_product_policy
- \ azurerm_api_management_property
- \ azurerm_api_management_subscription
- \ azurerm_api_management_user
- \ azurerm_app_configuration
- \ azurerm_app_service
- \ azurerm_app_service_active_slot
- \ azurerm_app_service_certificate
- \ azurerm_app_service_certificate_order
- \ azurerm_app_service_custom_hostname_binding
- \ azurerm_app_service_plan
- \ azurerm_app_service_slot
- \ azurerm_app_service_source_control_token
- \ azurerm_app_service_virtual_network_swift_connection
- \ azurerm_application_gateway
- \ azurerm_application_insights
- \ azurerm_application_insights_analytics_item
- \ azurerm_application_insights_api_key
- \ azurerm_application_insights_web_test
- \ azurerm_application_security_group
- \ azurerm_automation_account
- \ azurerm_automation_certificate
- \ azurerm_automation_credential
- \ azurerm_automation_dsc_configuration
- \ azurerm_automation_dsc_nodeconfiguration
- \ azurerm_automation_job_schedule
- \ azurerm_automation_module
- \ azurerm_automation_runbook
- \ azurerm_automation_schedule
- \ azurerm_automation_variable_bool
- \ azurerm_automation_variable_datetime
- \ azurerm_automation_variable_int
- \ azurerm_automation_variable_string
- \ azurerm_autoscale_setting
- \ azurerm_availability_set
- \ azurerm_azuread_application
- \ azurerm_azuread_service_principal_password
- \ azurerm_backup_container_storage_account
- \ azurerm_backup_policy_file_share
- \ azurerm_backup_policy_vm
- \ azurerm_backup_protected_file_share
- \ azurerm_backup_protected_vm
- \ azurerm_bastion_host
- \ azurerm_batch_account
- \ azurerm_batch_application
- \ azurerm_batch_certificate
- \ azurerm_batch_pool
- \ azurerm_bot_channel_email
- \ azurerm_bot_channel_ms_teams
- \ azurerm_bot_channel_slack
- \ azurerm_bot_channels_registration
- \ azurerm_bot_connection
- \ azurerm_bot_web_app
- \ azurerm_cdn_endpoint
- \ azurerm_cdn_profile
- \ azurerm_cognitive_account
- \ azurerm_connection_monitor
- \ azurerm_container_group
- \ azurerm_container_registry
- \ azurerm_container_registry_webhook
- \ azurerm_container_service
- \ azurerm_cosmosdb_account
- \ azurerm_cosmosdb_cassandra_keyspace
- \ azurerm_cosmosdb_gremlin_database
- \ azurerm_cosmosdb_gremlin_graph
- \ azurerm_cosmosdb_mongo_collection
- \ azurerm_cosmosdb_mongo_database
- \ azurerm_cosmosdb_sql_container
- \ azurerm_cosmosdb_sql_database
- \ azurerm_dashboard
- \ azurerm_data_factory
- \ azurerm_data_factory_dataset_mysql
- \ azurerm_data_factory_dataset_postgresql
- \ azurerm_data_factory_dataset_sql_server_table
- \ azurerm_data_factory_integration_runtime_managed
- \ azurerm_data_factory_linked_service_data_lake_storage_gen2
- \ azurerm_data_factory_linked_service_mysql
- \ azurerm_data_factory_linked_service_postgresql
- \ azurerm_data_factory_linked_service_sql_server
- \ azurerm_data_factory_pipeline
- \ azurerm_data_factory_trigger_schedule
- \ azurerm_data_lake_analytics_account
- \ azurerm_data_lake_analytics_firewall_rule
- \ azurerm_data_lake_store_file
- \ azurerm_data_lake_store_firewall_rule
- \ azurerm_databricks_workspace
- \ azurerm_ddos_protection_plan
- \ azurerm_dedicated_host
- \ azurerm_dedicated_host_group
- \ azurerm_dev_test_lab
- \ azurerm_dev_test_linux_virtual_machine
- \ azurerm_dev_test_policy
- \ azurerm_dev_test_schedule
- \ azurerm_dev_test_virtual_network
- \ azurerm_devspace_controller
- \ azurerm_disk_encryption_set
- \ azurerm_dns_a_record
- \ azurerm_dns_aaaa_record
- \ azurerm_dns_caa_record
- \ azurerm_dns_cname_record
- \ azurerm_dns_mx_record
- \ azurerm_dns_ns_record
- \ azurerm_dns_ptr_record
- \ azurerm_dns_srv_record
- \ azurerm_dns_txt_record
- \ azurerm_eventgrid_domain
- \ azurerm_eventgrid_event_subscription
- \ azurerm_eventgrid_topic
- \ azurerm_eventhub_authorization_rule
- \ azurerm_eventhub_consumer_group
- \ azurerm_eventhub_namespace
- \ azurerm_eventhub_namespace_authorization_rule
- \ azurerm_eventhub_namespace_disaster_recovery_config
- \ azurerm_express_route_circuit
- \ azurerm_express_route_circuit_authorization
- \ azurerm_express_route_circuit_peering
- \ azurerm_firewall
- \ azurerm_firewall_application_rule_collection
- \ azurerm_firewall_nat_rule_collection
- \ azurerm_firewall_network_rule_collection
- \ azurerm_frontdoor
- \ azurerm_function_app
- \ azurerm_hdinsight_hadoop_cluster
- \ azurerm_hdinsight_hbase_cluster
- \ azurerm_hdinsight_interactive_query_cluster
- \ azurerm_hdinsight_kafka_cluster
- \ azurerm_hdinsight_ml_services_cluster
- \ azurerm_hdinsight_rserver_cluster
- \ azurerm_hdinsight_spark_cluster
- \ azurerm_healthcare_service
- \ azurerm_image
- \ azurerm_iot_dps
- \ azurerm_iot_dps_certificate
- \ azurerm_iothub
- \ azurerm_iothub_consumer_group
- \ azurerm_iothub_dps
- \ azurerm_iothub_dps_certificate
- \ azurerm_iothub_dps_shared_access_policy
- \ azurerm_iothub_endpoint_eventhub
- \ azurerm_iothub_endpoint_servicebus_queue
- \ azurerm_iothub_endpoint_servicebus_topic
- \ azurerm_iothub_endpoint_storage_container
- \ azurerm_iothub_fallback_route
- \ azurerm_iothub_route
- \ azurerm_key_vault
- \ azurerm_key_vault_access_policy
- \ azurerm_key_vault_certificate
- \ azurerm_key_vault_key
- \ azurerm_key_vault_secret
- \ azurerm_kubernetes_cluster
- \ azurerm_kubernetes_cluster_node_pool
- \ azurerm_kusto_cluster
- \ azurerm_kusto_database
- \ azurerm_kusto_database_principal
- \ azurerm_kusto_eventhub_data_connection
- \ azurerm_lb
- \ azurerm_lb_backend_address_pool
- \ azurerm_lb_nat_pool
- \ azurerm_lb_nat_rule
- \ azurerm_lb_outbound_rule
- \ azurerm_lb_probe
- \ azurerm_lb_rule
- \ azurerm_local_network_gateway
- \ azurerm_log_analytics_linked_service
- \ azurerm_log_analytics_solution
- \ azurerm_log_analytics_workspace_linked_service
- \ azurerm_logic_app_action_custom
- \ azurerm_logic_app_action_http
- \ azurerm_logic_app_trigger_custom
- \ azurerm_logic_app_trigger_http_request
- \ azurerm_logic_app_trigger_recurrence
- \ azurerm_managed_disk
- \ azurerm_management_group
- \ azurerm_management_lock
- \ azurerm_maps_account
- \ azurerm_mariadb_configuration
- \ azurerm_mariadb_database
- \ azurerm_mariadb_firewall_rule
- \ azurerm_mariadb_server
- \ azurerm_marketplace_agreement
- \ azurerm_media_services_account
- \ azurerm_metric_alertrule
- \ azurerm_monitor_action_group
- \ azurerm_monitor_activity_log_alert
- \ azurerm_monitor_autoscale_setting
- \ azurerm_monitor_diagnostic_setting
- \ azurerm_monitor_log_profile
- \ azurerm_monitor_metric_alert
- \ azurerm_mssql_database_vulnerability_assessment_rule_baseline
- \ azurerm_mssql_elasticpool
- \ azurerm_mssql_server_security_alert_policy
- \ azurerm_mssql_server_vulnerability_assessment
- \ azurerm_mysql_configuration
- \ azurerm_mysql_database
- \ azurerm_mysql_firewall_rule
- \ azurerm_mysql_server
- \ azurerm_nat_gateway
- \ azurerm_netapp_account
- \ azurerm_netapp_pool
- \ azurerm_netapp_volume
- \ azurerm_network_connection_monitor
- \ azurerm_network_ddos_protection_plan
- \ azurerm_network_interface
- \ azurerm_network_interface_application_gateway_backend_address_pool_association
- \ azurerm_network_interface_application_security_group_association
- \ azurerm_network_interface_backend_address_pool_association
- \ azurerm_network_interface_nat_rule_association
- \ azurerm_network_packet_capture
- \ azurerm_network_profile
- \ azurerm_network_security_group
- \ azurerm_network_security_rule
- \ azurerm_network_watcher
- \ azurerm_network_watcher_flow_log
- \ azurerm_notification_hub
- \ azurerm_notification_hub_authorization_rule
- \ azurerm_notification_hub_namespace
- \ azurerm_packet_capture
- \ azurerm_point_to_site_vpn_gateway
- \ azurerm_policy_assignment
- \ azurerm_policy_definition
- \ azurerm_policy_set_definition
- \ azurerm_postgresql_configuration
- \ azurerm_postgresql_database
- \ azurerm_postgresql_firewall_rule
- \ azurerm_postgresql_server
- \ azurerm_postgresql_virtual_network_rule
- \ azurerm_private_dns_a_record
- \ azurerm_private_dns_aaaa_record
- \ azurerm_private_dns_cname_record
- \ azurerm_private_dns_mx_record
- \ azurerm_private_dns_ptr_record
- \ azurerm_private_dns_srv_record
- \ azurerm_private_dns_zone
- \ azurerm_private_dns_zone_virtual_network_link
- \ azurerm_private_endpoint
- \ azurerm_private_link_endpoint
- \ azurerm_private_link_service
- \ azurerm_proximity_placement_group
- \ azurerm_public_ip
- \ azurerm_public_ip_prefix
- \ azurerm_recovery_network_mapping
- \ azurerm_recovery_replicated_vm
- \ azurerm_recovery_services_fabric
- \ azurerm_recovery_services_protected_vm
- \ azurerm_recovery_services_protection_container
- \ azurerm_recovery_services_protection_container_mapping
- \ azurerm_recovery_services_protection_policy_vm
- \ azurerm_recovery_services_replication_policy
- \ azurerm_recovery_services_vault
- \ azurerm_redis_cache
- \ azurerm_redis_firewall_rule
- \ azurerm_relay_hybrid_connection
- \ azurerm_relay_namespace
- \ azurerm_resource_group
- \ azurerm_resources
- \ azurerm_role_assignment
- \ azurerm_role_definition
- \ azurerm_route
- \ azurerm_route_table
- \ azurerm_scheduler_job
- \ azurerm_scheduler_job_collection
- \ azurerm_search_service
- \ azurerm_security_center_contact
- \ azurerm_security_center_subscription_pricing
- \ azurerm_security_center_workspace
- \ azurerm_service_fabric_cluster
- \ azurerm_servicebus_namespace
- \ azurerm_servicebus_namespace_authorization_rule
- \ azurerm_servicebus_queue
- \ azurerm_servicebus_queue_authorization_rule
- \ azurerm_servicebus_subscription
- \ azurerm_servicebus_subscription_rule
- \ azurerm_servicebus_topic
- \ azurerm_servicebus_topic_authorization_rule
- \ azurerm_shared_image
- \ azurerm_shared_image_gallery
- \ azurerm_shared_image_version
- \ azurerm_signalr_service
- \ azurerm_site_recovery_fabric
- \ azurerm_site_recovery_network_mapping
- \ azurerm_site_recovery_protection_container
- \ azurerm_site_recovery_protection_container_mapping
- \ azurerm_site_recovery_replicated_vm
- \ azurerm_site_recovery_replication_policy
- \ azurerm_snapshot
- \ azurerm_sql_active_directory_administrator
- \ azurerm_sql_database
- \ azurerm_sql_elasticpool
- \ azurerm_sql_failover_group
- \ azurerm_sql_firewall_rule
- \ azurerm_sql_server
- \ azurerm_sql_virtual_network_rule
- \ azurerm_storage_account
- \ azurerm_storage_account_network_rules
- \ azurerm_storage_blob
- \ azurerm_storage_container
- \ azurerm_storage_data_lake_gen2_filesystem
- \ azurerm_storage_management_policy
- \ azurerm_storage_queue
- \ azurerm_storage_share
- \ azurerm_storage_share_directory
- \ azurerm_storage_table
- \ azurerm_storage_table_entity
- \ azurerm_stream_analytics_function_javascript_udf
- \ azurerm_stream_analytics_job
- \ azurerm_stream_analytics_output_blob
- \ azurerm_stream_analytics_output_eventhub
- \ azurerm_stream_analytics_output_mssql
- \ azurerm_stream_analytics_output_servicebus_queue
- \ azurerm_stream_analytics_output_servicebus_topic
- \ azurerm_stream_analytics_reference_input_blob
- \ azurerm_stream_analytics_stream_input_blob
- \ azurerm_stream_analytics_stream_input_eventhub
- \ azurerm_stream_analytics_stream_input_iothub
- \ azurerm_subnet
- \ azurerm_subnet_nat_gateway_association
- \ azurerm_subnet_network_security_group_association
- \ azurerm_subnet_route_table_association
- \ azurerm_template_deployment
- \ azurerm_traffic_manager_endpoint
- \ azurerm_traffic_manager_profile
- \ azurerm_user_assigned_identity
- \ azurerm_virtual_hub
- \ azurerm_virtual_machine
- \ azurerm_virtual_machine_data_disk_attachment
- \ azurerm_virtual_machine_extension
- \ azurerm_virtual_machine_scale_set
- \ azurerm_virtual_network
- \ azurerm_virtual_network_gateway
- \ azurerm_virtual_network_gateway_connection
- \ azurerm_virtual_network_peering
- \ azurerm_virtual_wan
- \ azurerm_vpn_gateway
- \ azurerm_vpn_server_configuration
- \ azurerm_web_application_firewall_policy
- \ azurestack_availability_set
- \ azurestack_dns_a_record
- \ azurestack_dns_zone
- \ azurestack_lb
- \ azurestack_lb_backend_address_pool
- \ azurestack_lb_nat_pool
- \ azurestack_lb_nat_rule
- \ azurestack_lb_probe
- \ azurestack_lb_rule
- \ azurestack_local_network_gateway
- \ azurestack_managed_disk
- \ azurestack_network_interface
- \ azurestack_network_security_group
- \ azurestack_network_security_rule
- \ azurestack_public_ip
- \ azurestack_resource_group
- \ azurestack_route
- \ azurestack_route_table
- \ azurestack_storage_account
- \ azurestack_storage_blob
- \ azurestack_storage_container
- \ azurestack_subnet
- \ azurestack_template_deployment
- \ azurestack_virtual_machine
- \ azurestack_virtual_machine_extension
- \ azurestack_virtual_machine_scale_set
- \ azurestack_virtual_network
- \ azurestack_virtual_network_gateway
- \ azurestack_virtual_network_gateway_connection
- \ bigip_as3
- \ bigip_cm_device
- \ bigip_cm_devicegroup
- \ bigip_do
- \ bigip_ltm_datagroup
- \ bigip_ltm_irule
- \ bigip_ltm_monitor
- \ bigip_ltm_node
- \ bigip_ltm_persistence_profile_cookie
- \ bigip_ltm_persistence_profile_dstaddr
- \ bigip_ltm_persistence_profile_srcaddr
- \ bigip_ltm_persistence_profile_ssl
- \ bigip_ltm_policy
- \ bigip_ltm_pool
- \ bigip_ltm_pool_attachment
- \ bigip_ltm_profile_client_ssl
- \ bigip_ltm_profile_fasthttp
- \ bigip_ltm_profile_fastl4
- \ bigip_ltm_profile_http
- \ bigip_ltm_profile_http2
- \ bigip_ltm_profile_httpcompress
- \ bigip_ltm_profile_oneconnect
- \ bigip_ltm_profile_server_ssl
- \ bigip_ltm_profile_tcp
- \ bigip_ltm_snat
- \ bigip_ltm_snatpool
- \ bigip_ltm_virtual_address
- \ bigip_ltm_virtual_server
- \ bigip_net_route
- \ bigip_net_selfip
- \ bigip_net_vlan
- \ bigip_ssl_certificate
- \ bigip_ssl_key
- \ bigip_sys_bigiplicense
- \ bigip_sys_dns
- \ bigip_sys_iapp
- \ bigip_sys_ntp
- \ bigip_sys_provision
- \ bigip_sys_snmp
- \ bigip_sys_snmp_traps
- \ bitbucket_branch_restriction
- \ bitbucket_default_reviewers
- \ bitbucket_hook
- \ bitbucket_project
- \ bitbucket_repository
- \ bitbucket_repository_variable
- \ brightbox_api_client
- \ brightbox_cloudip
- \ brightbox_database_server
- \ brightbox_firewall_policy
- \ brightbox_firewall_rule
- \ brightbox_load_balancer
- \ brightbox_orbit_container
- \ brightbox_server
- \ brightbox_server_group
- \ checkpoint_hostname
- \ checkpoint_management_access_rule
- \ checkpoint_management_address_range
- \ checkpoint_management_group
- \ checkpoint_management_host
- \ checkpoint_management_install_policy
- \ checkpoint_management_login
- \ checkpoint_management_logout
- \ checkpoint_management_network
- \ checkpoint_management_package
- \ checkpoint_management_publish
- \ checkpoint_management_run_ips_update
- \ checkpoint_management_service_group
- \ checkpoint_management_service_tcp
- \ checkpoint_management_service_udp
- \ checkpoint_management_threat_indicator
- \ checkpoint_physical_interface
- \ checkpoint_put_file
- \ chef_acl
- \ chef_client
- \ chef_cookbook
- \ chef_data_bag
- \ chef_data_bag_item
- \ chef_environment
- \ chef_node
- \ chef_role
- \ cherryservers_ip
- \ cherryservers_project
- \ cherryservers_server
- \ cherryservers_ssh
- \ circonus_check
- \ circonus_contact_group
- \ circonus_dashboard
- \ circonus_graph
- \ circonus_maintenance
- \ circonus_metric
- \ circonus_metric_cluster
- \ circonus_overlay_set
- \ circonus_rule_set
- \ circonus_rule_set_group
- \ circonus_worksheet
- \ ciscoasa_access_in_rules
- \ ciscoasa_access_out_rules
- \ ciscoasa_acl
- \ ciscoasa_network_object
- \ ciscoasa_network_object_group
- \ ciscoasa_network_service_group
- \ ciscoasa_static_route
- \ clc_group
- \ clc_load_balancer
- \ clc_load_balancer_pool
- \ clc_public_ip
- \ clc_server
- \ cloudflare_access_application
- \ cloudflare_access_group
- \ cloudflare_access_policy
- \ cloudflare_access_rule
- \ cloudflare_access_service_token
- \ cloudflare_account_member
- \ cloudflare_argo
- \ cloudflare_custom_pages
- \ cloudflare_custom_ssl
- \ cloudflare_filter
- \ cloudflare_firewall_rule
- \ cloudflare_load_balancer
- \ cloudflare_load_balancer_monitor
- \ cloudflare_load_balancer_pool
- \ cloudflare_logpush_job
- \ cloudflare_origin_ca_certificate
- \ cloudflare_page_rule
- \ cloudflare_rate_limit
- \ cloudflare_record
- \ cloudflare_spectrum_application
- \ cloudflare_waf_group
- \ cloudflare_waf_package
- \ cloudflare_waf_rule
- \ cloudflare_worker_route
- \ cloudflare_worker_script
- \ cloudflare_workers_kv_namespace
- \ cloudflare_zone
- \ cloudflare_zone_lockdown
- \ cloudflare_zone_settings_override
- \ cloudscale_floating_ip
- \ cloudscale_network
- \ cloudscale_server
- \ cloudscale_server_group
- \ cloudscale_volume
- \ cloudstack_affinity_group
- \ cloudstack_autoscale_vm_profile
- \ cloudstack_disk
- \ cloudstack_egress_firewall
- \ cloudstack_firewall
- \ cloudstack_instance
- \ cloudstack_ipaddress
- \ cloudstack_loadbalancer_rule
- \ cloudstack_network
- \ cloudstack_network_acl
- \ cloudstack_network_acl_rule
- \ cloudstack_nic
- \ cloudstack_port_forward
- \ cloudstack_private_gateway
- \ cloudstack_secondary_ipaddress
- \ cloudstack_security_group
- \ cloudstack_security_group_rule
- \ cloudstack_ssh_keypair
- \ cloudstack_static_nat
- \ cloudstack_static_route
- \ cloudstack_template
- \ cloudstack_vpc
- \ cloudstack_vpn_connection
- \ cloudstack_vpn_customer_gateway
- \ cloudstack_vpn_gateway
- \ cobbler_distro
- \ cobbler_kickstart_file
- \ cobbler_profile
- \ cobbler_repo
- \ cobbler_snippet
- \ cobbler_system
- \ consul_acl_auth_method
- \ consul_acl_binding_rule
- \ consul_acl_policy
- \ consul_acl_role
- \ consul_acl_token
- \ consul_acl_token_policy_attachment
- \ consul_agent_service
- \ consul_autopilot_config
- \ consul_catalog_entry
- \ consul_config_entry
- \ consul_intention
- \ consul_key_prefix
- \ consul_keys
- \ consul_license
- \ consul_node
- \ consul_prepared_query
- \ consul_service
- \ datadog_dashboard
- \ datadog_dashboard_list
- \ datadog_downtime
- \ datadog_integration_aws
- \ datadog_integration_gcp
- \ datadog_integration_pagerduty
- \ datadog_integration_pagerduty_service_object
- \ datadog_logs_custom_pipeline
- \ datadog_logs_index
- \ datadog_logs_index_order
- \ datadog_logs_integration_pipeline
- \ datadog_logs_pipeline_order
- \ datadog_metric_metadata
- \ datadog_monitor
- \ datadog_screenboard
- \ datadog_service_level_objective
- \ datadog_synthetics_test
- \ datadog_timeboard
- \ datadog_user
- \ digitalocean_cdn
- \ digitalocean_certificate
- \ digitalocean_database_cluster
- \ digitalocean_database_connection_pool
- \ digitalocean_database_db
- \ digitalocean_database_firewall
- \ digitalocean_database_replica
- \ digitalocean_database_user
- \ digitalocean_domain
- \ digitalocean_droplet
- \ digitalocean_droplet_snapshot
- \ digitalocean_firewall
- \ digitalocean_floating_ip
- \ digitalocean_floating_ip_assignment
- \ digitalocean_kubernetes_cluster
- \ digitalocean_kubernetes_node_pool
- \ digitalocean_loadbalancer
- \ digitalocean_project
- \ digitalocean_record
- \ digitalocean_spaces_bucket
- \ digitalocean_ssh_key
- \ digitalocean_tag
- \ digitalocean_volume
- \ digitalocean_volume_attachment
- \ digitalocean_volume_snapshot
- \ dme_record
- \ dns_a_record_set
- \ dns_aaaa_record_set
- \ dns_cname_record
- \ dns_mx_record_set
- \ dns_ns_record_set
- \ dns_ptr_record
- \ dns_srv_record_set
- \ dns_txt_record_set
- \ dnsimple_record
- \ docker_config
- \ docker_container
- \ docker_image
- \ docker_network
- \ docker_secret
- \ docker_service
- \ docker_volume
- \ dyn_record
- \ exoscale_affinity
- \ exoscale_compute
- \ exoscale_domain
- \ exoscale_domain_record
- \ exoscale_instance_pool
- \ exoscale_ipaddress
- \ exoscale_network
- \ exoscale_nic
- \ exoscale_secondary_ipaddress
- \ exoscale_security_group
- \ exoscale_security_group_rule
- \ exoscale_security_group_rules
- \ exoscale_ssh_keypair
- \ fastly_service_acl_entries_v1
- \ fastly_service_dictionary_items_v1
- \ fastly_service_dynamic_snippet_content_v1
- \ fastly_service_v1
- \ flexibleengine_antiddos_v1
- \ flexibleengine_as_configuration_v1
- \ flexibleengine_as_group_v1
- \ flexibleengine_as_policy_v1
- \ flexibleengine_blockstorage_volume_v2
- \ flexibleengine_cce_cluster_v3
- \ flexibleengine_cce_node_v3
- \ flexibleengine_ces_alarmrule
- \ flexibleengine_compute_bms_server_v2
- \ flexibleengine_compute_floatingip_associate_v2
- \ flexibleengine_compute_floatingip_v2
- \ flexibleengine_compute_instance_v2
- \ flexibleengine_compute_interface_attach_v2
- \ flexibleengine_compute_keypair_v2
- \ flexibleengine_compute_servergroup_v2
- \ flexibleengine_compute_volume_attach_v2
- \ flexibleengine_csbs_backup_policy_v1
- \ flexibleengine_csbs_backup_v1
- \ flexibleengine_cts_tracker_v1
- \ flexibleengine_dcs_instance_v1
- \ flexibleengine_dds_instance_v3
- \ flexibleengine_dns_recordset_v2
- \ flexibleengine_dns_zone_v2
- \ flexibleengine_drs_replication_v2
- \ flexibleengine_drs_replicationconsistencygroup_v2
- \ flexibleengine_dws_cluster_v1
- \ flexibleengine_elb_backend
- \ flexibleengine_elb_health
- \ flexibleengine_elb_listener
- \ flexibleengine_elb_loadbalancer
- \ flexibleengine_fw_firewall_group_v2
- \ flexibleengine_fw_policy_v2
- \ flexibleengine_fw_rule_v2
- \ flexibleengine_images_image_v2
- \ flexibleengine_kms_key_v1
- \ flexibleengine_lb_certificate_v2
- \ flexibleengine_lb_l7policy_v2
- \ flexibleengine_lb_l7rule_v2
- \ flexibleengine_lb_listener_v2
- \ flexibleengine_lb_loadbalancer_v2
- \ flexibleengine_lb_member_v2
- \ flexibleengine_lb_monitor_v2
- \ flexibleengine_lb_pool_v2
- \ flexibleengine_lb_whitelist_v2
- \ flexibleengine_mls_instance_v1
- \ flexibleengine_mrs_cluster_v1
- \ flexibleengine_mrs_job_v1
- \ flexibleengine_nat_dnat_rule_v2
- \ flexibleengine_nat_gateway_v2
- \ flexibleengine_nat_snat_rule_v2
- \ flexibleengine_networking_floatingip_associate_v2
- \ flexibleengine_networking_floatingip_v2
- \ flexibleengine_networking_network_v2
- \ flexibleengine_networking_port_v2
- \ flexibleengine_networking_router_interface_v2
- \ flexibleengine_networking_router_route_v2
- \ flexibleengine_networking_router_v2
- \ flexibleengine_networking_secgroup_rule_v2
- \ flexibleengine_networking_secgroup_v2
- \ flexibleengine_networking_subnet_v2
- \ flexibleengine_networking_vip_associate_v2
- \ flexibleengine_networking_vip_v2
- \ flexibleengine_rds_instance_v1
- \ flexibleengine_rds_instance_v3
- \ flexibleengine_rds_parametergroup_v3
- \ flexibleengine_rts_software_config_v1
- \ flexibleengine_rts_stack_resource_v1
- \ flexibleengine_rts_stack_v1
- \ flexibleengine_s3_bucket
- \ flexibleengine_s3_bucket_object
- \ flexibleengine_s3_bucket_policy
- \ flexibleengine_sdrs_drill_v1
- \ flexibleengine_sdrs_protectedinstance_v1
- \ flexibleengine_sdrs_protectiongroup_v1
- \ flexibleengine_sdrs_replication_attach_v1
- \ flexibleengine_sdrs_replication_pair_v1
- \ flexibleengine_sfs_file_system_v2
- \ flexibleengine_smn_subscription_v2
- \ flexibleengine_smn_topic_v2
- \ flexibleengine_vbs_backup_policy_v2
- \ flexibleengine_vbs_backup_v2
- \ flexibleengine_vpc_eip_v1
- \ flexibleengine_vpc_peering_connection_accepter_v2
- \ flexibleengine_vpc_peering_connection_v2
- \ flexibleengine_vpc_route_v2
- \ flexibleengine_vpc_subnet_v1
- \ flexibleengine_vpc_v1
- \ fortios_firewall_object_address
- \ fortios_firewall_object_addressgroup
- \ fortios_firewall_object_ippool
- \ fortios_firewall_object_service
- \ fortios_firewall_object_servicecategory
- \ fortios_firewall_object_servicegroup
- \ fortios_firewall_object_vip
- \ fortios_firewall_object_vipgroup
- \ fortios_firewall_security_policy
- \ fortios_firewall_security_policyseq
- \ fortios_log_fortianalyzer_setting
- \ fortios_log_syslog_setting
- \ fortios_networking_interface_port
- \ fortios_networking_route_static
- \ fortios_system_admin_administrator
- \ fortios_system_admin_profiles
- \ fortios_system_apiuser_setting
- \ fortios_system_license_forticare
- \ fortios_system_license_vdom
- \ fortios_system_license_vm
- \ fortios_system_setting_dns
- \ fortios_system_setting_global
- \ fortios_system_setting_ntp
- \ fortios_system_vdom_setting
- \ fortios_vpn_ipsec_phase1interface
- \ fortios_vpn_ipsec_phase2interface
- \ genymotion_cloud
- \ github_branch_protection
- \ github_issue_label
- \ github_membership
- \ github_organization_block
- \ github_organization_project
- \ github_organization_webhook
- \ github_project_column
- \ github_repository
- \ github_repository_collaborator
- \ github_repository_deploy_key
- \ github_repository_project
- \ github_repository_webhook
- \ github_team
- \ github_team_membership
- \ github_team_repository
- \ github_user_gpg_key
- \ github_user_invitation_accepter
- \ github_user_ssh_key
- \ gitlab_branch_protection
- \ gitlab_deploy_key
- \ gitlab_deploy_key_enable
- \ gitlab_group
- \ gitlab_group_cluster
- \ gitlab_group_label
- \ gitlab_group_membership
- \ gitlab_group_variable
- \ gitlab_label
- \ gitlab_pipeline_schedule
- \ gitlab_pipeline_schedule_variable
- \ gitlab_pipeline_trigger
- \ gitlab_project
- \ gitlab_project_cluster
- \ gitlab_project_hook
- \ gitlab_project_membership
- \ gitlab_project_push_rules
- \ gitlab_project_share_group
- \ gitlab_project_variable
- \ gitlab_service_jira
- \ gitlab_service_slack
- \ gitlab_tag_protection
- \ gitlab_user
- \ google_access_context_manager_access_level
- \ google_access_context_manager_access_policy
- \ google_access_context_manager_service_perimeter
- \ google_access_context_manager_service_perimeter_resource
- \ google_app_engine_application
- \ google_app_engine_application_url_dispatch_rules
- \ google_app_engine_domain_mapping
- \ google_app_engine_firewall_rule
- \ google_app_engine_standard_app_version
- \ google_bigquery_data_transfer_config
- \ google_bigquery_dataset
- \ google_bigquery_table
- \ google_bigtable_app_profile
- \ google_bigtable_gc_policy
- \ google_bigtable_instance
- \ google_bigtable_instance_iam_binding
- \ google_bigtable_instance_iam_member
- \ google_bigtable_instance_iam_policy
- \ google_bigtable_table
- \ google_billing_account_iam_binding
- \ google_billing_account_iam_member
- \ google_billing_account_iam_policy
- \ google_billing_budget
- \ google_binary_authorization_attestor
- \ google_binary_authorization_attestor_iam_binding
- \ google_binary_authorization_attestor_iam_member
- \ google_binary_authorization_attestor_iam_policy
- \ google_binary_authorization_policy
- \ google_cloud_run_domain_mapping
- \ google_cloud_run_service
- \ google_cloud_run_service_iam_binding
- \ google_cloud_run_service_iam_member
- \ google_cloud_run_service_iam_policy
- \ google_cloud_scheduler_job
- \ google_cloud_tasks_queue
- \ google_cloudbuild_trigger
- \ google_cloudfunctions_function
- \ google_cloudfunctions_function_iam_binding
- \ google_cloudfunctions_function_iam_member
- \ google_cloudfunctions_function_iam_policy
- \ google_cloudiot_registry
- \ google_composer_environment
- \ google_compute_address
- \ google_compute_attached_disk
- \ google_compute_autoscaler
- \ google_compute_backend_bucket
- \ google_compute_backend_bucket_signed_url_key
- \ google_compute_backend_service
- \ google_compute_backend_service_signed_url_key
- \ google_compute_disk
- \ google_compute_disk_resource_policy_attachment
- \ google_compute_external_vpn_gateway
- \ google_compute_firewall
- \ google_compute_forwarding_rule
- \ google_compute_global_address
- \ google_compute_global_forwarding_rule
- \ google_compute_ha_vpn_gateway
- \ google_compute_health_check
- \ google_compute_http_health_check
- \ google_compute_https_health_check
- \ google_compute_image
- \ google_compute_instance
- \ google_compute_instance_from_template
- \ google_compute_instance_group
- \ google_compute_instance_group_manager
- \ google_compute_instance_iam_binding
- \ google_compute_instance_iam_member
- \ google_compute_instance_iam_policy
- \ google_compute_instance_template
- \ google_compute_interconnect_attachment
- \ google_compute_managed_ssl_certificate
- \ google_compute_network
- \ google_compute_network_endpoint
- \ google_compute_network_endpoint_group
- \ google_compute_network_peering
- \ google_compute_network_peering_routes_config
- \ google_compute_node_group
- \ google_compute_node_template
- \ google_compute_project_default_network_tier
- \ google_compute_project_metadata
- \ google_compute_project_metadata_item
- \ google_compute_region_autoscaler
- \ google_compute_region_backend_service
- \ google_compute_region_disk
- \ google_compute_region_health_check
- \ google_compute_region_instance_group_manager
- \ google_compute_region_ssl_certificate
- \ google_compute_region_target_http_proxy
- \ google_compute_region_target_https_proxy
- \ google_compute_region_url_map
- \ google_compute_reservation
- \ google_compute_resource_policy
- \ google_compute_route
- \ google_compute_router
- \ google_compute_router_interface
- \ google_compute_router_nat
- \ google_compute_router_peer
- \ google_compute_security_policy
- \ google_compute_shared_vpc_host_project
- \ google_compute_shared_vpc_service_project
- \ google_compute_snapshot
- \ google_compute_ssl_certificate
- \ google_compute_ssl_policy
- \ google_compute_subnetwork
- \ google_compute_subnetwork_iam_binding
- \ google_compute_subnetwork_iam_member
- \ google_compute_subnetwork_iam_policy
- \ google_compute_target_http_proxy
- \ google_compute_target_https_proxy
- \ google_compute_target_instance
- \ google_compute_target_pool
- \ google_compute_target_ssl_proxy
- \ google_compute_target_tcp_proxy
- \ google_compute_url_map
- \ google_compute_vpn_gateway
- \ google_compute_vpn_tunnel
- \ google_container_analysis_note
- \ google_container_cluster
- \ google_container_node_pool
- \ google_container_registry
- \ google_data_fusion_instance
- \ google_dataflow_job
- \ google_dataproc_autoscaling_policy
- \ google_dataproc_cluster
- \ google_dataproc_cluster_iam_binding
- \ google_dataproc_cluster_iam_member
- \ google_dataproc_cluster_iam_policy
- \ google_dataproc_job
- \ google_dataproc_job_iam_binding
- \ google_dataproc_job_iam_member
- \ google_dataproc_job_iam_policy
- \ google_deployment_manager_deployment
- \ google_dialogflow_agent
- \ google_dns_managed_zone
- \ google_dns_policy
- \ google_dns_record_set
- \ google_endpoints_service
- \ google_filestore_instance
- \ google_firestore_index
- \ google_folder
- \ google_folder_iam_binding
- \ google_folder_iam_member
- \ google_folder_iam_policy
- \ google_folder_organization_policy
- \ google_healthcare_dataset
- \ google_healthcare_dataset_iam_binding
- \ google_healthcare_dataset_iam_member
- \ google_healthcare_dataset_iam_policy
- \ google_healthcare_dicom_store
- \ google_healthcare_dicom_store_iam_binding
- \ google_healthcare_dicom_store_iam_member
- \ google_healthcare_dicom_store_iam_policy
- \ google_healthcare_fhir_store
- \ google_healthcare_fhir_store_iam_binding
- \ google_healthcare_fhir_store_iam_member
- \ google_healthcare_fhir_store_iam_policy
- \ google_healthcare_hl7_v2_store
- \ google_healthcare_hl7_v2_store_iam_binding
- \ google_healthcare_hl7_v2_store_iam_member
- \ google_healthcare_hl7_v2_store_iam_policy
- \ google_iap_app_engine_service_iam_binding
- \ google_iap_app_engine_service_iam_member
- \ google_iap_app_engine_service_iam_policy
- \ google_iap_app_engine_version_iam_binding
- \ google_iap_app_engine_version_iam_member
- \ google_iap_app_engine_version_iam_policy
- \ google_iap_tunnel_instance_iam_binding
- \ google_iap_tunnel_instance_iam_member
- \ google_iap_tunnel_instance_iam_policy
- \ google_iap_web_backend_service_iam_binding
- \ google_iap_web_backend_service_iam_member
- \ google_iap_web_backend_service_iam_policy
- \ google_iap_web_iam_binding
- \ google_iap_web_iam_member
- \ google_iap_web_iam_policy
- \ google_iap_web_type_app_engine_iam_binding
- \ google_iap_web_type_app_engine_iam_member
- \ google_iap_web_type_app_engine_iam_policy
- \ google_iap_web_type_compute_iam_binding
- \ google_iap_web_type_compute_iam_member
- \ google_iap_web_type_compute_iam_policy
- \ google_identity_platform_default_supported_idp_config
- \ google_identity_platform_inbound_saml_config
- \ google_identity_platform_oauth_idp_config
- \ google_identity_platform_tenant
- \ google_identity_platform_tenant_default_supported_idp_config
- \ google_identity_platform_tenant_inbound_saml_config
- \ google_identity_platform_tenant_oauth_idp_config
- \ google_kms_crypto_key
- \ google_kms_crypto_key_iam_binding
- \ google_kms_crypto_key_iam_member
- \ google_kms_crypto_key_iam_policy
- \ google_kms_key_ring
- \ google_kms_key_ring_iam_binding
- \ google_kms_key_ring_iam_member
- \ google_kms_key_ring_iam_policy
- \ google_kms_secret_ciphertext
- \ google_logging_billing_account_exclusion
- \ google_logging_billing_account_sink
- \ google_logging_folder_exclusion
- \ google_logging_folder_sink
- \ google_logging_metric
- \ google_logging_organization_exclusion
- \ google_logging_organization_sink
- \ google_logging_project_exclusion
- \ google_logging_project_sink
- \ google_ml_engine_model
- \ google_monitoring_alert_policy
- \ google_monitoring_group
- \ google_monitoring_notification_channel
- \ google_monitoring_uptime_check_config
- \ google_organization_iam_audit_config
- \ google_organization_iam_binding
- \ google_organization_iam_custom_role
- \ google_organization_iam_member
- \ google_organization_iam_policy
- \ google_organization_policy
- \ google_project
- \ google_project_iam_audit_config
- \ google_project_iam_binding
- \ google_project_iam_custom_role
- \ google_project_iam_member
- \ google_project_iam_policy
- \ google_project_organization_policy
- \ google_project_service
- \ google_project_services
- \ google_project_usage_export_bucket
- \ google_pubsub_subscription
- \ google_pubsub_subscription_iam_binding
- \ google_pubsub_subscription_iam_member
- \ google_pubsub_subscription_iam_policy
- \ google_pubsub_topic
- \ google_pubsub_topic_iam_binding
- \ google_pubsub_topic_iam_member
- \ google_pubsub_topic_iam_policy
- \ google_redis_instance
- \ google_resource_manager_lien
- \ google_runtimeconfig_config
- \ google_runtimeconfig_config_iam_binding
- \ google_runtimeconfig_config_iam_member
- \ google_runtimeconfig_config_iam_policy
- \ google_runtimeconfig_variable
- \ google_scc_source
- \ google_secret_manager_secret
- \ google_secret_manager_secret_iam_binding
- \ google_secret_manager_secret_iam_member
- \ google_secret_manager_secret_iam_policy
- \ google_secret_manager_secret_version
- \ google_security_scanner_scan_config
- \ google_service_account
- \ google_service_account_iam_binding
- \ google_service_account_iam_member
- \ google_service_account_iam_policy
- \ google_service_account_key
- \ google_service_networking_connection
- \ google_sourcerepo_repository
- \ google_sourcerepo_repository_iam_binding
- \ google_sourcerepo_repository_iam_member
- \ google_sourcerepo_repository_iam_policy
- \ google_spanner_database
- \ google_spanner_database_iam_binding
- \ google_spanner_database_iam_member
- \ google_spanner_database_iam_policy
- \ google_spanner_instance
- \ google_spanner_instance_iam_binding
- \ google_spanner_instance_iam_member
- \ google_spanner_instance_iam_policy
- \ google_sql_database
- \ google_sql_database_instance
- \ google_sql_ssl_cert
- \ google_sql_user
- \ google_storage_bucket
- \ google_storage_bucket_access_control
- \ google_storage_bucket_acl
- \ google_storage_bucket_iam_binding
- \ google_storage_bucket_iam_member
- \ google_storage_bucket_iam_policy
- \ google_storage_bucket_object
- \ google_storage_default_object_access_control
- \ google_storage_default_object_acl
- \ google_storage_notification
- \ google_storage_object_access_control
- \ google_storage_object_acl
- \ google_storage_transfer_job
- \ google_tpu_node
- \ google_vpc_access_connector
- \ grafana_alert_notification
- \ grafana_dashboard
- \ grafana_data_source
- \ grafana_folder
- \ grafana_organization
- \ gridscale_firewall
- \ gridscale_ipv4
- \ gridscale_ipv6
- \ gridscale_isoimage
- \ gridscale_loadbalancer
- \ gridscale_network
- \ gridscale_object_storage_accesskey
- \ gridscale_paas
- \ gridscale_paas_securityzone
- \ gridscale_server
- \ gridscale_snapshot
- \ gridscale_snapshotschedule
- \ gridscale_sshkey
- \ gridscale_storage
- \ gridscale_template
- \ hcloud_floating_ip
- \ hcloud_floating_ip_assignment
- \ hcloud_network
- \ hcloud_network_route
- \ hcloud_network_subnet
- \ hcloud_rdns
- \ hcloud_server
- \ hcloud_server_network
- \ hcloud_ssh_key
- \ hcloud_volume
- \ hcloud_volume_attachment
- \ hedvig_access
- \ hedvig_lun
- \ hedvig_mount
- \ hedvig_vdisk
- \ helm_release
- \ helm_repository
- \ heroku_account_feature
- \ heroku_addon
- \ heroku_addon_attachment
- \ heroku_app
- \ heroku_app_config_association
- \ heroku_app_feature
- \ heroku_app_release
- \ heroku_app_webhook
- \ heroku_build
- \ heroku_cert
- \ heroku_config
- \ heroku_domain
- \ heroku_drain
- \ heroku_formation
- \ heroku_pipeline
- \ heroku_pipeline_coupling
- \ heroku_slug
- \ heroku_space
- \ heroku_space_app_access
- \ heroku_space_inbound_ruleset
- \ heroku_space_peering_connection_accepter
- \ heroku_space_vpn_connection
- \ heroku_team_collaborator
- \ heroku_team_member
- \ huaweicloud_as_configuration_v1
- \ huaweicloud_as_group_v1
- \ huaweicloud_as_policy_v1
- \ huaweicloud_blockstorage_volume_v2
- \ huaweicloud_cce_cluster_v3
- \ huaweicloud_cce_node_v3
- \ huaweicloud_cdm_cluster_v1
- \ huaweicloud_cdn_domain_v1
- \ huaweicloud_ces_alarmrule
- \ huaweicloud_cloudtable_cluster_v2
- \ huaweicloud_compute_floatingip_associate_v2
- \ huaweicloud_compute_floatingip_v2
- \ huaweicloud_compute_instance_v2
- \ huaweicloud_compute_interface_attach_v2
- \ huaweicloud_compute_keypair_v2
- \ huaweicloud_compute_secgroup_v2
- \ huaweicloud_compute_servergroup_v2
- \ huaweicloud_compute_volume_attach_v2
- \ huaweicloud_cs_cluster_v1
- \ huaweicloud_cs_peering_connect_v1
- \ huaweicloud_cs_route_v1
- \ huaweicloud_csbs_backup_policy_v1
- \ huaweicloud_csbs_backup_v1
- \ huaweicloud_css_cluster_v1
- \ huaweicloud_cts_tracker_v1
- \ huaweicloud_dcs_instance_v1
- \ huaweicloud_dis_stream_v2
- \ huaweicloud_dli_queue_v1
- \ huaweicloud_dms_group_v1
- \ huaweicloud_dms_instance_v1
- \ huaweicloud_dms_queue_v1
- \ huaweicloud_dns_ptrrecord_v2
- \ huaweicloud_dns_recordset_v2
- \ huaweicloud_dns_zone_v2
- \ huaweicloud_dws_cluster
- \ huaweicloud_ecs_instance_v1
- \ huaweicloud_elb_backendecs
- \ huaweicloud_elb_healthcheck
- \ huaweicloud_elb_listener
- \ huaweicloud_elb_loadbalancer
- \ huaweicloud_fw_firewall_group_v2
- \ huaweicloud_fw_policy_v2
- \ huaweicloud_fw_rule_v2
- \ huaweicloud_ges_graph_v1
- \ huaweicloud_iam_agency_v3
- \ huaweicloud_identity_group_membership_v3
- \ huaweicloud_identity_group_v3
- \ huaweicloud_identity_project_v3
- \ huaweicloud_identity_role_assignment_v3
- \ huaweicloud_identity_user_v3
- \ huaweicloud_images_image_v2
- \ huaweicloud_kms_key_v1
- \ huaweicloud_lb_certificate_v2
- \ huaweicloud_lb_l7policy_v2
- \ huaweicloud_lb_l7rule_v2
- \ huaweicloud_lb_listener_v2
- \ huaweicloud_lb_loadbalancer_v2
- \ huaweicloud_lb_member_v2
- \ huaweicloud_lb_monitor_v2
- \ huaweicloud_lb_pool_v2
- \ huaweicloud_lb_whitelist_v2
- \ huaweicloud_maas_task_v1
- \ huaweicloud_mls_instance
- \ huaweicloud_mrs_cluster_v1
- \ huaweicloud_mrs_job_v1
- \ huaweicloud_nat_dnat_rule_v2
- \ huaweicloud_nat_gateway_v2
- \ huaweicloud_nat_snat_rule_v2
- \ huaweicloud_networking_floatingip_associate_v2
- \ huaweicloud_networking_floatingip_v2
- \ huaweicloud_networking_network_v2
- \ huaweicloud_networking_port_v2
- \ huaweicloud_networking_router_interface_v2
- \ huaweicloud_networking_router_route_v2
- \ huaweicloud_networking_router_v2
- \ huaweicloud_networking_secgroup_rule_v2
- \ huaweicloud_networking_secgroup_v2
- \ huaweicloud_networking_subnet_v2
- \ huaweicloud_networking_vip_associate_v2
- \ huaweicloud_networking_vip_v2
- \ huaweicloud_rds_instance_v1
- \ huaweicloud_rds_instance_v3
- \ huaweicloud_rds_parametergroup_v3
- \ huaweicloud_rts_software_config_v1
- \ huaweicloud_rts_stack_resource_v1
- \ huaweicloud_rts_stack_v1
- \ huaweicloud_s3_bucket
- \ huaweicloud_s3_bucket_object
- \ huaweicloud_s3_bucket_policy
- \ huaweicloud_sfs_file_system_v2
- \ huaweicloud_smn_subscription_v2
- \ huaweicloud_smn_topic_v2
- \ huaweicloud_vbs_backup_policy_v2
- \ huaweicloud_vbs_backup_v2
- \ huaweicloud_vpc_bandwidth_v2
- \ huaweicloud_vpc_eip_v1
- \ huaweicloud_vpc_peering_connection_accepter_v2
- \ huaweicloud_vpc_peering_connection_v2
- \ huaweicloud_vpc_route_v2
- \ huaweicloud_vpc_subnet_v1
- \ huaweicloud_vpc_v1
- \ huaweicloud_vpnaas_endpoint_group_v2
- \ huaweicloud_vpnaas_ike_policy_v2
- \ huaweicloud_vpnaas_ipsec_policy_v2
- \ huaweicloud_vpnaas_service_v2
- \ huaweicloud_vpnaas_site_connection_v2
- \ huaweicloudstack_as_configuration_v1
- \ huaweicloudstack_as_group_v1
- \ huaweicloudstack_as_policy_v1
- \ huaweicloudstack_blockstorage_volume_v2
- \ huaweicloudstack_compute_floatingip_associate_v2
- \ huaweicloudstack_compute_instance_v2
- \ huaweicloudstack_compute_interface_attach_v2
- \ huaweicloudstack_compute_keypair_v2
- \ huaweicloudstack_compute_servergroup_v2
- \ huaweicloudstack_compute_volume_attach_v2
- \ huaweicloudstack_lb_certificate_v2
- \ huaweicloudstack_lb_l7policy_v2
- \ huaweicloudstack_lb_l7rule_v2
- \ huaweicloudstack_lb_listener_v2
- \ huaweicloudstack_lb_loadbalancer_v2
- \ huaweicloudstack_lb_member_v2
- \ huaweicloudstack_lb_monitor_v2
- \ huaweicloudstack_lb_pool_v2
- \ huaweicloudstack_lb_whitelist_v2
- \ huaweicloudstack_networking_floatingip_associate_v2
- \ huaweicloudstack_networking_floatingip_v2
- \ huaweicloudstack_networking_network_v2
- \ huaweicloudstack_networking_port_v2
- \ huaweicloudstack_networking_router_interface_v2
- \ huaweicloudstack_networking_router_route_v2
- \ huaweicloudstack_networking_router_v2
- \ huaweicloudstack_networking_secgroup_rule_v2
- \ huaweicloudstack_networking_secgroup_v2
- \ huaweicloudstack_networking_subnet_v2
- \ huaweicloudstack_networking_vip_associate_v2
- \ huaweicloudstack_networking_vip_v2
- \ icinga2_checkcommand
- \ icinga2_host
- \ icinga2_hostgroup
- \ icinga2_notification
- \ icinga2_service
- \ icinga2_user
- \ incapsula_acl_security_rule
- \ incapsula_custom_certificate
- \ incapsula_data_center
- \ incapsula_data_center_server
- \ incapsula_incap_rule
- \ incapsula_security_rule_exception
- \ incapsula_site
- \ incapsula_waf_security_rule
- \ influxdb_continuous_query
- \ influxdb_database
- \ influxdb_user
- \ jdcloud_availability_group
- \ jdcloud_disk
- \ jdcloud_disk_attachment
- \ jdcloud_eip
- \ jdcloud_eip_association
- \ jdcloud_instance
- \ jdcloud_instance_ag_instance
- \ jdcloud_instance_template
- \ jdcloud_key_pairs
- \ jdcloud_network_acl
- \ jdcloud_network_interface
- \ jdcloud_network_interface_attachment
- \ jdcloud_network_security_group
- \ jdcloud_network_security_group_rules
- \ jdcloud_oss_bucket
- \ jdcloud_oss_bucket_upload
- \ jdcloud_rds_account
- \ jdcloud_rds_database
- \ jdcloud_rds_instance
- \ jdcloud_rds_privilege
- \ jdcloud_route_table
- \ jdcloud_route_table_association
- \ jdcloud_route_table_rules
- \ jdcloud_subnet
- \ jdcloud_vpc
- \ kubernetes_api_service
- \ kubernetes_cluster_role
- \ kubernetes_cluster_role_binding
- \ kubernetes_config_map
- \ kubernetes_cron_job
- \ kubernetes_daemonset
- \ kubernetes_deployment
- \ kubernetes_endpoints
- \ kubernetes_horizontal_pod_autoscaler
- \ kubernetes_ingress
- \ kubernetes_job
- \ kubernetes_limit_range
- \ kubernetes_namespace
- \ kubernetes_network_policy
- \ kubernetes_persistent_volume
- \ kubernetes_persistent_volume_claim
- \ kubernetes_pod
- \ kubernetes_pod_disruption_budget
- \ kubernetes_priority_class
- \ kubernetes_replication_controller
- \ kubernetes_resource_quota
- \ kubernetes_role
- \ kubernetes_role_binding
- \ kubernetes_secret
- \ kubernetes_service
- \ kubernetes_service_account
- \ kubernetes_stateful_set
- \ kubernetes_storage_class
- \ launchdarkly_custom_role
- \ launchdarkly_environment
- \ launchdarkly_feature_flag
- \ launchdarkly_feature_flag_environment
- \ launchdarkly_project
- \ launchdarkly_segment
- \ launchdarkly_team_member
- \ launchdarkly_webhook
- \ librato_alert
- \ librato_metric
- \ librato_service
- \ librato_space
- \ librato_space_chart
- \ linode_domain
- \ linode_domain_record
- \ linode_image
- \ linode_instance
- \ linode_nodebalancer
- \ linode_nodebalancer_config
- \ linode_nodebalancer_node
- \ linode_object_storage_bucket
- \ linode_object_storage_key
- \ linode_rdns
- \ linode_sshkey
- \ linode_stackscript
- \ linode_token
- \ linode_volume
- \ local_file
- \ logentries_log
- \ logentries_logset
- \ logicmonitor_collector
- \ logicmonitor_collector_group
- \ logicmonitor_dashboard
- \ logicmonitor_dashboard_group
- \ logicmonitor_device
- \ logicmonitor_device_group
- \ mailgun_domain
- \ mailgun_route
- \ metalcloud_infrastructure
- \ mongodbatlas_alert_configuration
- \ mongodbatlas_auditing
- \ mongodbatlas_cloud_provider_snapshot
- \ mongodbatlas_cloud_provider_snapshot_restore_job
- \ mongodbatlas_cluster
- \ mongodbatlas_custom_db_role
- \ mongodbatlas_database_user
- \ mongodbatlas_encryption_at_rest
- \ mongodbatlas_global_cluster_config
- \ mongodbatlas_maintenance_window
- \ mongodbatlas_network_container
- \ mongodbatlas_network_peering
- \ mongodbatlas_private_endpoint
- \ mongodbatlas_private_endpoint_interface_link
- \ mongodbatlas_private_ip_mode
- \ mongodbatlas_project
- \ mongodbatlas_project_ip_whitelist
- \ mongodbatlas_team
- \ mongodbatlas_teams
- \ mongodbatlas_x509_authentication_database_user
- \ mysql_database
- \ mysql_grant
- \ mysql_role
- \ mysql_user
- \ mysql_user_password
- \ ncloud_block_storage
- \ ncloud_block_storage_snapshot
- \ ncloud_load_balancer
- \ ncloud_load_balancer_ssl_certificate
- \ ncloud_login_key
- \ ncloud_nas_volume
- \ ncloud_port_forwarding_rule
- \ ncloud_public_ip
- \ ncloud_server
- \ netlify_build_hook
- \ netlify_deploy_key
- \ netlify_hook
- \ netlify_site
- \ newrelic_alert_channel
- \ newrelic_alert_condition
- \ newrelic_alert_policy
- \ newrelic_alert_policy_channel
- \ newrelic_dashboard
- \ newrelic_infra_alert_condition
- \ newrelic_insights_event
- \ newrelic_nrql_alert_condition
- \ newrelic_plugins_alert_condition
- \ newrelic_synthetics_alert_condition
- \ newrelic_synthetics_monitor
- \ newrelic_synthetics_monitor_script
- \ nomad_acl_policy
- \ nomad_acl_token
- \ nomad_job
- \ nomad_namespace
- \ nomad_quota_specification
- \ nomad_sentinel_policy
- \ ns1_apikey
- \ ns1_datafeed
- \ ns1_datasource
- \ ns1_monitoringjob
- \ ns1_notifylist
- \ ns1_record
- \ ns1_team
- \ ns1_user
- \ ns1_zone
- \ nsxt_algorithm_type_ns_service
- \ nsxt_dhcp_relay_profile
- \ nsxt_dhcp_relay_service
- \ nsxt_dhcp_server_ip_pool
- \ nsxt_dhcp_server_profile
- \ nsxt_ether_type_ns_service
- \ nsxt_firewall_section
- \ nsxt_icmp_type_ns_service
- \ nsxt_igmp_type_ns_service
- \ nsxt_ip_block
- \ nsxt_ip_block_subnet
- \ nsxt_ip_discovery_switching_profile
- \ nsxt_ip_pool
- \ nsxt_ip_pool_allocation_ip_address
- \ nsxt_ip_protocol_ns_service
- \ nsxt_ip_set
- \ nsxt_l4_port_set_ns_service
- \ nsxt_lb_client_ssl_profile
- \ nsxt_lb_cookie_persistence_profile
- \ nsxt_lb_fast_tcp_application_profile
- \ nsxt_lb_fast_udp_application_profile
- \ nsxt_lb_http_application_profile
- \ nsxt_lb_http_forwarding_rule
- \ nsxt_lb_http_monitor
- \ nsxt_lb_http_request_rewrite_rule
- \ nsxt_lb_http_response_rewrite_rule
- \ nsxt_lb_http_virtual_server
- \ nsxt_lb_https_monitor
- \ nsxt_lb_icmp_monitor
- \ nsxt_lb_passive_monitor
- \ nsxt_lb_pool
- \ nsxt_lb_server_ssl_profile
- \ nsxt_lb_service
- \ nsxt_lb_source_ip_persistence_profile
- \ nsxt_lb_tcp_monitor
- \ nsxt_lb_tcp_virtual_server
- \ nsxt_lb_udp_monitor
- \ nsxt_lb_udp_virtual_server
- \ nsxt_logical_dhcp_port
- \ nsxt_logical_dhcp_server
- \ nsxt_logical_port
- \ nsxt_logical_router_centralized_service_port
- \ nsxt_logical_router_downlink_port
- \ nsxt_logical_router_link_port_on_tier0
- \ nsxt_logical_router_link_port_on_tier1
- \ nsxt_logical_switch
- \ nsxt_logical_tier0_router
- \ nsxt_logical_tier1_router
- \ nsxt_mac_management_switching_profile
- \ nsxt_nat_rule
- \ nsxt_ns_group
- \ nsxt_ns_service_group
- \ nsxt_policy_bgp_neighbor
- \ nsxt_policy_dhcp_relay
- \ nsxt_policy_dhcp_server
- \ nsxt_policy_gateway_policy
- \ nsxt_policy_group
- \ nsxt_policy_ip_address_allocation
- \ nsxt_policy_ip_block
- \ nsxt_policy_ip_pool
- \ nsxt_policy_ip_pool_block_subnet
- \ nsxt_policy_ip_pool_static_subnet
- \ nsxt_policy_lb_pool
- \ nsxt_policy_lb_service
- \ nsxt_policy_lb_virtual_server
- \ nsxt_policy_nat_rule
- \ nsxt_policy_security_policy
- \ nsxt_policy_segment
- \ nsxt_policy_service
- \ nsxt_policy_static_route
- \ nsxt_policy_tier0_gateway
- \ nsxt_policy_tier0_gateway_interface
- \ nsxt_policy_tier1_gateway
- \ nsxt_policy_tier1_gateway_interface
- \ nsxt_policy_vlan_segment
- \ nsxt_policy_vm_tags
- \ nsxt_qos_switching_profile
- \ nsxt_spoofguard_switching_profile
- \ nsxt_static_route
- \ nsxt_switch_security_switching_profile
- \ nsxt_vlan_logical_switch
- \ nsxt_vm_tags
- \ null_resource
- \ nutanix_category_key
- \ nutanix_category_value
- \ nutanix_image
- \ nutanix_network_security_rule
- \ nutanix_subnet
- \ nutanix_virtual_machine
- \ nutanix_volume_group
- \ oci_analytics_analytics_instance
- \ oci_apigateway_deployment
- \ oci_apigateway_gateway
- \ oci_audit_configuration
- \ oci_autoscaling_auto_scaling_configuration
- \ oci_budget_alert_rule
- \ oci_budget_budget
- \ oci_containerengine_cluster
- \ oci_containerengine_node_pool
- \ oci_core_app_catalog_listing_resource_version
- \ oci_core_app_catalog_listing_resource_version_agreement
- \ oci_core_app_catalog_listing_resource_versions
- \ oci_core_app_catalog_subscription
- \ oci_core_boot_volume
- \ oci_core_boot_volume_backup
- \ oci_core_cluster_network
- \ oci_core_console_history
- \ oci_core_cpe
- \ oci_core_cross_connect
- \ oci_core_cross_connect_group
- \ oci_core_dedicated_vm_host
- \ oci_core_default_dhcp_options
- \ oci_core_default_route_table
- \ oci_core_default_security_list
- \ oci_core_dhcp_options
- \ oci_core_drg
- \ oci_core_drg_attachment
- \ oci_core_image
- \ oci_core_instance
- \ oci_core_instance_configuration
- \ oci_core_instance_console_connection
- \ oci_core_instance_pool
- \ oci_core_internet_gateway
- \ oci_core_ipsec
- \ oci_core_ipsec_connection_tunnel_management
- \ oci_core_listing_resource_version
- \ oci_core_listing_resource_version_agreement
- \ oci_core_listing_resource_versions
- \ oci_core_local_peering_gateway
- \ oci_core_nat_gateway
- \ oci_core_network_security_group
- \ oci_core_network_security_group_security_rule
- \ oci_core_private_ip
- \ oci_core_public_ip
- \ oci_core_remote_peering_connection
- \ oci_core_route_table
- \ oci_core_route_table_attachment
- \ oci_core_security_list
- \ oci_core_service_gateway
- \ oci_core_shape_management
- \ oci_core_subnet
- \ oci_core_vcn
- \ oci_core_virtual_circuit
- \ oci_core_vnic_attachment
- \ oci_core_volume
- \ oci_core_volume_attachment
- \ oci_core_volume_backup
- \ oci_core_volume_backup_policy
- \ oci_core_volume_backup_policy_assignment
- \ oci_core_volume_group
- \ oci_core_volume_group_backup
- \ oci_database_autonomous_container_database
- \ oci_database_autonomous_data_warehouse
- \ oci_database_autonomous_data_warehouse_backup
- \ oci_database_autonomous_database
- \ oci_database_autonomous_database_backup
- \ oci_database_autonomous_database_instance_wallet_management
- \ oci_database_autonomous_database_regional_wallet_management
- \ oci_database_autonomous_exadata_infrastructure
- \ oci_database_backup
- \ oci_database_backup_destination
- \ oci_database_data_guard_association
- \ oci_database_database
- \ oci_database_db_home
- \ oci_database_db_system
- \ oci_database_exadata_infrastructure
- \ oci_database_exadata_iorm_config
- \ oci_database_maintenance_run
- \ oci_database_vm_cluster
- \ oci_database_vm_cluster_network
- \ oci_datacatalog_catalog
- \ oci_datacatalog_connection
- \ oci_datacatalog_data_asset
- \ oci_dataflow_application
- \ oci_dataflow_invoke_run
- \ oci_datascience_model
- \ oci_datascience_model_provenance
- \ oci_datascience_notebook_session
- \ oci_datascience_project
- \ oci_dns_record
- \ oci_dns_steering_policy
- \ oci_dns_steering_policy_attachment
- \ oci_dns_tsig_key
- \ oci_dns_zone
- \ oci_email_sender
- \ oci_email_suppression
- \ oci_events_rule
- \ oci_file_storage_export
- \ oci_file_storage_export_set
- \ oci_file_storage_file_system
- \ oci_file_storage_mount_target
- \ oci_file_storage_snapshot
- \ oci_functions_application
- \ oci_functions_function
- \ oci_functions_invoke_function
- \ oci_health_checks_http_monitor
- \ oci_health_checks_http_probe
- \ oci_health_checks_ping_monitor
- \ oci_health_checks_ping_probe
- \ oci_identity_api_key
- \ oci_identity_auth_token
- \ oci_identity_authentication_policy
- \ oci_identity_compartment
- \ oci_identity_customer_secret_key
- \ oci_identity_dynamic_group
- \ oci_identity_group
- \ oci_identity_identity_provider
- \ oci_identity_idp_group_mapping
- \ oci_identity_policy
- \ oci_identity_smtp_credential
- \ oci_identity_swift_password
- \ oci_identity_tag
- \ oci_identity_tag_default
- \ oci_identity_tag_namespace
- \ oci_identity_ui_password
- \ oci_identity_user
- \ oci_identity_user_capabilities_management
- \ oci_identity_user_group_membership
- \ oci_integration_integration_instance
- \ oci_kms_encrypted_data
- \ oci_kms_generated_key
- \ oci_kms_key
- \ oci_kms_key_version
- \ oci_kms_vault
- \ oci_limits_quota
- \ oci_limits_resource_availability
- \ oci_load_balancer
- \ oci_load_balancer_backend
- \ oci_load_balancer_backend_set
- \ oci_load_balancer_backendset
- \ oci_load_balancer_certificate
- \ oci_load_balancer_hostname
- \ oci_load_balancer_listener
- \ oci_load_balancer_load_balancer
- \ oci_load_balancer_path_route_set
- \ oci_load_balancer_rule_set
- \ oci_marketplace_accepted_agreement
- \ oci_marketplace_listing_package_agreement
- \ oci_monitoring_alarm
- \ oci_objectstorage_bucket
- \ oci_objectstorage_namespace_metadata
- \ oci_objectstorage_object
- \ oci_objectstorage_object_lifecycle_policy
- \ oci_objectstorage_preauthrequest
- \ oci_oce_oce_instance
- \ oci_oda_oda_instance
- \ oci_ons_notification_topic
- \ oci_ons_subscription
- \ oci_osmanagement_managed_instance_group
- \ oci_osmanagement_managed_instance_management
- \ oci_osmanagement_software_source
- \ oci_osmanagement_software_sources
- \ oci_resourcemanager_stack
- \ oci_resourcemanager_stack_tf_state
- \ oci_resourcemanager_stacks
- \ oci_streaming_connect_harness
- \ oci_streaming_stream
- \ oci_streaming_stream_archiver
- \ oci_streaming_stream_pool
- \ oci_waas_address_list
- \ oci_waas_certificate
- \ oci_waas_custom_protection_rule
- \ oci_waas_http_redirect
- \ oci_waas_purge_cache
- \ oci_waas_waas_policy
- \ okta_auto_login_app
- \ okta_bookmark_app
- \ okta_idp
- \ okta_mfa_policy
- \ okta_mfa_policy_rule
- \ okta_oauth_app
- \ okta_oauth_app_redirect_uri
- \ okta_password_policy
- \ okta_password_policy_rule
- \ okta_saml_app
- \ okta_saml_idp
- \ okta_saml_idp_signing_key
- \ okta_secure_password_store_app
- \ okta_signon_policy
- \ okta_signon_policy_rule
- \ okta_social_idp
- \ okta_swa_app
- \ okta_three_field_app
- \ oneandone_baremetal
- \ oneandone_block_storage
- \ oneandone_firewall_policy
- \ oneandone_image
- \ oneandone_loadbalancer
- \ oneandone_monitoring_policy
- \ oneandone_private_network
- \ oneandone_public_ip
- \ oneandone_server
- \ oneandone_shared_storage
- \ oneandone_ssh_key
- \ oneandone_vpn
- \ opc_compute_acl
- \ opc_compute_image_list
- \ opc_compute_image_list_entry
- \ opc_compute_instance
- \ opc_compute_ip_address_association
- \ opc_compute_ip_address_prefix_set
- \ opc_compute_ip_address_reservation
- \ opc_compute_ip_association
- \ opc_compute_ip_network
- \ opc_compute_ip_network_exchange
- \ opc_compute_ip_reservation
- \ opc_compute_machine_image
- \ opc_compute_orchestrated_instance
- \ opc_compute_route
- \ opc_compute_sec_rule
- \ opc_compute_security_application
- \ opc_compute_security_association
- \ opc_compute_security_ip_list
- \ opc_compute_security_list
- \ opc_compute_security_protocol
- \ opc_compute_security_rule
- \ opc_compute_snapshot
- \ opc_compute_ssh_key
- \ opc_compute_storage_attachment
- \ opc_compute_storage_volume
- \ opc_compute_storage_volume_snapshot
- \ opc_compute_vnic_set
- \ opc_compute_vpn_endpoint_v2
- \ opc_lbaas_certificate
- \ opc_lbaas_listener
- \ opc_lbaas_load_balancer
- \ opc_lbaas_policy
- \ opc_lbaas_server_pool
- \ opc_storage_container
- \ opc_storage_object
- \ opennebula_group
- \ opennebula_image
- \ opennebula_security_group
- \ opennebula_template
- \ opennebula_virtual_data_center
- \ opennebula_virtual_machine
- \ opennebula_virtual_machine_group
- \ opennebula_virtual_network
- \ openstack_blockstorage_quotaset_v2
- \ openstack_blockstorage_quotaset_v3
- \ openstack_blockstorage_volume_attach_v2
- \ openstack_blockstorage_volume_attach_v3
- \ openstack_blockstorage_volume_v1
- \ openstack_blockstorage_volume_v2
- \ openstack_blockstorage_volume_v3
- \ openstack_compute_flavor_access_v2
- \ openstack_compute_flavor_v2
- \ openstack_compute_floatingip_associate_v2
- \ openstack_compute_floatingip_v2
- \ openstack_compute_instance_v2
- \ openstack_compute_interface_attach_v2
- \ openstack_compute_keypair_v2
- \ openstack_compute_quotaset_v2
- \ openstack_compute_secgroup_v2
- \ openstack_compute_servergroup_v2
- \ openstack_compute_volume_attach_v2
- \ openstack_containerinfra_cluster_v1
- \ openstack_containerinfra_clustertemplate_v1
- \ openstack_db_configuration_v1
- \ openstack_db_database_v1
- \ openstack_db_instance_v1
- \ openstack_db_user_v1
- \ openstack_dns_recordset_v2
- \ openstack_dns_zone_v2
- \ openstack_fw_firewall_v1
- \ openstack_fw_policy_v1
- \ openstack_fw_rule_v1
- \ openstack_identity_application_credential_v3
- \ openstack_identity_endpoint_v3
- \ openstack_identity_project_v3
- \ openstack_identity_role_assignment_v3
- \ openstack_identity_role_v3
- \ openstack_identity_service_v3
- \ openstack_identity_user_v3
- \ openstack_images_image_access_accept_v2
- \ openstack_images_image_access_v2
- \ openstack_images_image_v2
- \ openstack_keymanager_container_v1
- \ openstack_keymanager_secret_v1
- \ openstack_lb_l7policy_v2
- \ openstack_lb_l7rule_v2
- \ openstack_lb_listener_v2
- \ openstack_lb_loadbalancer_v2
- \ openstack_lb_member_v1
- \ openstack_lb_member_v2
- \ openstack_lb_monitor_v1
- \ openstack_lb_monitor_v2
- \ openstack_lb_pool_v1
- \ openstack_lb_pool_v2
- \ openstack_lb_vip_v1
- \ openstack_networking_addressscope_v2
- \ openstack_networking_floatingip_associate_v2
- \ openstack_networking_floatingip_v2
- \ openstack_networking_network_v2
- \ openstack_networking_port_secgroup_associate_v2
- \ openstack_networking_port_v2
- \ openstack_networking_qos_bandwidth_limit_rule_v2
- \ openstack_networking_qos_dscp_marking_rule_v2
- \ openstack_networking_qos_minimum_bandwidth_rule_v2
- \ openstack_networking_qos_policy_v2
- \ openstack_networking_quota_v2
- \ openstack_networking_rbac_policy_v2
- \ openstack_networking_router_interface_v2
- \ openstack_networking_router_route_v2
- \ openstack_networking_router_v2
- \ openstack_networking_secgroup_rule_v2
- \ openstack_networking_secgroup_v2
- \ openstack_networking_subnet_route_v2
- \ openstack_networking_subnet_v2
- \ openstack_networking_subnetpool_v2
- \ openstack_networking_trunk_v2
- \ openstack_objectstorage_container_v1
- \ openstack_objectstorage_object_v1
- \ openstack_objectstorage_tempurl_v1
- \ openstack_orchestration_stack_v1
- \ openstack_sharedfilesystem_securityservice_v2
- \ openstack_sharedfilesystem_share_access_v2
- \ openstack_sharedfilesystem_share_v2
- \ openstack_sharedfilesystem_sharenetwork_v2
- \ openstack_vpnaas_endpoint_group_v2
- \ openstack_vpnaas_ike_policy_v2
- \ openstack_vpnaas_ipsec_policy_v2
- \ openstack_vpnaas_service_v2
- \ openstack_vpnaas_site_connection_v2
- \ opentelekomcloud_antiddos_v1
- \ opentelekomcloud_as_configuration_v1
- \ opentelekomcloud_as_group_v1
- \ opentelekomcloud_as_policy_v1
- \ opentelekomcloud_blockstorage_volume_v2
- \ opentelekomcloud_cce_cluster_v3
- \ opentelekomcloud_cce_node_v3
- \ opentelekomcloud_ces_alarmrule
- \ opentelekomcloud_compute_bms_server_v2
- \ opentelekomcloud_compute_bms_tags_v2
- \ opentelekomcloud_compute_floatingip_associate_v2
- \ opentelekomcloud_compute_floatingip_v2
- \ opentelekomcloud_compute_instance_v2
- \ opentelekomcloud_compute_keypair_v2
- \ opentelekomcloud_compute_secgroup_v2
- \ opentelekomcloud_compute_servergroup_v2
- \ opentelekomcloud_compute_volume_attach_v2
- \ opentelekomcloud_csbs_backup_policy_v1
- \ opentelekomcloud_csbs_backup_v1
- \ opentelekomcloud_css_cluster_v1
- \ opentelekomcloud_cts_tracker_v1
- \ opentelekomcloud_dcs_instance_v1
- \ opentelekomcloud_deh_host_v1
- \ opentelekomcloud_dms_group_v1
- \ opentelekomcloud_dms_queue_v1
- \ opentelekomcloud_dns_recordset_v2
- \ opentelekomcloud_dns_zone_v2
- \ opentelekomcloud_ecs_instance_v1
- \ opentelekomcloud_elb_backend
- \ opentelekomcloud_elb_health
- \ opentelekomcloud_elb_listener
- \ opentelekomcloud_elb_loadbalancer
- \ opentelekomcloud_evs_volume_v3
- \ opentelekomcloud_fw_firewall_group_v2
- \ opentelekomcloud_fw_policy_v2
- \ opentelekomcloud_fw_rule_v2
- \ opentelekomcloud_identity_agency_v3
- \ opentelekomcloud_identity_group_membership_v3
- \ opentelekomcloud_identity_group_v3
- \ opentelekomcloud_identity_project_v3
- \ opentelekomcloud_identity_role_assignment_v3
- \ opentelekomcloud_identity_role_v3
- \ opentelekomcloud_identity_user_v3
- \ opentelekomcloud_images_image_v2
- \ opentelekomcloud_ims_data_image_v2
- \ opentelekomcloud_ims_image_v2
- \ opentelekomcloud_kms_key_v1
- \ opentelekomcloud_lb_certificate_v2
- \ opentelekomcloud_lb_l7policy_v2
- \ opentelekomcloud_lb_l7rule_v2
- \ opentelekomcloud_lb_listener_v2
- \ opentelekomcloud_lb_loadbalancer_v2
- \ opentelekomcloud_lb_member_v2
- \ opentelekomcloud_lb_monitor_v2
- \ opentelekomcloud_lb_pool_v2
- \ opentelekomcloud_lb_whitelist_v2
- \ opentelekomcloud_logtank_group_v2
- \ opentelekomcloud_logtank_topic_v2
- \ opentelekomcloud_maas_task_v1
- \ opentelekomcloud_mrs_cluster_v1
- \ opentelekomcloud_mrs_job_v1
- \ opentelekomcloud_nat_gateway_v2
- \ opentelekomcloud_nat_snat_rule_v2
- \ opentelekomcloud_networking_floatingip_associate_v2
- \ opentelekomcloud_networking_floatingip_v2
- \ opentelekomcloud_networking_network_v2
- \ opentelekomcloud_networking_port_v2
- \ opentelekomcloud_networking_router_interface_v2
- \ opentelekomcloud_networking_router_route_v2
- \ opentelekomcloud_networking_router_v2
- \ opentelekomcloud_networking_secgroup_rule_v2
- \ opentelekomcloud_networking_secgroup_v2
- \ opentelekomcloud_networking_subnet_v2
- \ opentelekomcloud_networking_vip_associate_v2
- \ opentelekomcloud_networking_vip_v2
- \ opentelekomcloud_rds_instance_v1
- \ opentelekomcloud_rds_instance_v3
- \ opentelekomcloud_rds_parametergroup_v3
- \ opentelekomcloud_rts_software_config_v1
- \ opentelekomcloud_rts_software_deployment_v1
- \ opentelekomcloud_rts_stack_resource_v1
- \ opentelekomcloud_rts_stack_v1
- \ opentelekomcloud_s3_bucket
- \ opentelekomcloud_s3_bucket_object
- \ opentelekomcloud_s3_bucket_policy
- \ opentelekomcloud_sdrs_protectiongroup_v1
- \ opentelekomcloud_sfs_file_system_v2
- \ opentelekomcloud_smn_subscription_v2
- \ opentelekomcloud_smn_topic_v2
- \ opentelekomcloud_vbs_backup_policy_v2
- \ opentelekomcloud_vbs_backup_share_v2
- \ opentelekomcloud_vbs_backup_v2
- \ opentelekomcloud_vpc_eip_v1
- \ opentelekomcloud_vpc_flow_log_v1
- \ opentelekomcloud_vpc_peering_connection_accepter_v2
- \ opentelekomcloud_vpc_peering_connection_v2
- \ opentelekomcloud_vpc_route_v2
- \ opentelekomcloud_vpc_subnet_v1
- \ opentelekomcloud_vpc_v1
- \ opentelekomcloud_vpnaas_endpoint_group_v2
- \ opentelekomcloud_vpnaas_ike_policy_v2
- \ opentelekomcloud_vpnaas_ipsec_policy_v2
- \ opentelekomcloud_vpnaas_service_v2
- \ opentelekomcloud_vpnaas_site_connection_v2
- \ opentelekomcloud_waf_ccattackprotection_rule_v1
- \ opentelekomcloud_waf_certificate_v1
- \ opentelekomcloud_waf_datamasking_rule_v1
- \ opentelekomcloud_waf_domain_v1
- \ opentelekomcloud_waf_falsealarmmasking_rule_v1
- \ opentelekomcloud_waf_policy_v1
- \ opentelekomcloud_waf_preciseprotection_rule_v1
- \ opentelekomcloud_waf_webtamperprotection_rule_v1
- \ opentelekomcloud_waf_whiteblackip_rule_v1
- \ opsgenie_api_integration
- \ opsgenie_email_integration
- \ opsgenie_escalation
- \ opsgenie_heartbeat
- \ opsgenie_maintenance
- \ opsgenie_notification_policy
- \ opsgenie_schedule
- \ opsgenie_schedule_rotation
- \ opsgenie_team
- \ opsgenie_team_routing_rule
- \ opsgenie_user
- \ opsgenie_user_contact
- \ oraclepaas_application_container
- \ oraclepaas_database_access_rule
- \ oraclepaas_database_service_instance
- \ oraclepaas_java_access_rule
- \ oraclepaas_java_service_instance
- \ oraclepaas_mysql_access_rule
- \ oraclepaas_mysql_service_instance
- \ ovh_cloud_network_private
- \ ovh_cloud_network_private_subnet
- \ ovh_cloud_user
- \ ovh_dedicated_server_install_task
- \ ovh_dedicated_server_reboot_task
- \ ovh_dedicated_server_update
- \ ovh_domain_zone_record
- \ ovh_domain_zone_redirection
- \ ovh_ip_reverse
- \ ovh_iploadbalancing_http_farm
- \ ovh_iploadbalancing_http_farm_server
- \ ovh_iploadbalancing_http_frontend
- \ ovh_iploadbalancing_http_route
- \ ovh_iploadbalancing_http_route_rule
- \ ovh_iploadbalancing_refresh
- \ ovh_iploadbalancing_tcp_farm
- \ ovh_iploadbalancing_tcp_farm_server
- \ ovh_iploadbalancing_tcp_frontend
- \ ovh_iploadbalancing_vrack_network
- \ ovh_me_installation_template
- \ ovh_me_installation_template_partition_scheme
- \ ovh_me_installation_template_partition_scheme_hardware_raid
- \ ovh_me_installation_template_partition_scheme_partition
- \ ovh_me_ssh_key
- \ ovh_publiccloud_private_network
- \ ovh_publiccloud_private_network_subnet
- \ ovh_publiccloud_user
- \ ovh_vrack_cloudproject
- \ ovh_vrack_dedicated_server
- \ ovh_vrack_dedicated_server_interface
- \ ovh_vrack_iploadbalancing
- \ ovh_vrack_publiccloud_attachment
- \ packet_bgp_session
- \ packet_device
- \ packet_ip_attachment
- \ packet_organization
- \ packet_port_vlan_attachment
- \ packet_project
- \ packet_project_ssh_key
- \ packet_reserved_ip_block
- \ packet_spot_market_request
- \ packet_ssh_key
- \ packet_vlan
- \ packet_volume
- \ packet_volume_attachment
- \ pagerduty_addon
- \ pagerduty_escalation_policy
- \ pagerduty_event_rule
- \ pagerduty_extension
- \ pagerduty_maintenance_window
- \ pagerduty_schedule
- \ pagerduty_service
- \ pagerduty_service_integration
- \ pagerduty_team
- \ pagerduty_team_membership
- \ pagerduty_user
- \ pagerduty_user_contact_method
- \ panos_address_group
- \ panos_address_object
- \ panos_administrative_tag
- \ panos_aggregate_interface
- \ panos_application_group
- \ panos_application_object
- \ panos_application_signature
- \ panos_bfd_profile
- \ panos_bgp
- \ panos_bgp_aggregate
- \ panos_bgp_aggregate_advertise_filter
- \ panos_bgp_aggregate_suppress_filter
- \ panos_bgp_auth_profile
- \ panos_bgp_conditional_adv
- \ panos_bgp_conditional_adv_advertise_filter
- \ panos_bgp_conditional_adv_non_exist_filter
- \ panos_bgp_dampening_profile
- \ panos_bgp_export_rule_group
- \ panos_bgp_import_rule_group
- \ panos_bgp_peer
- \ panos_bgp_peer_group
- \ panos_bgp_redist_rule
- \ panos_dag_tags
- \ panos_edl
- \ panos_email_server_profile
- \ panos_ethernet_interface
- \ panos_general_settings
- \ panos_gre_tunnel
- \ panos_http_server_profile
- \ panos_ike_crypto_profile
- \ panos_ike_gateway
- \ panos_ipsec_crypto_profile
- \ panos_ipsec_tunnel
- \ panos_ipsec_tunnel_proxy_id_ipv4
- \ panos_layer2_subinterface
- \ panos_layer3_subinterface
- \ panos_license_api_key
- \ panos_licensing
- \ panos_log_forwarding_profile
- \ panos_loopback_interface
- \ panos_management_profile
- \ panos_monitor_profile
- \ panos_nat_policy
- \ panos_nat_rule
- \ panos_nat_rule_group
- \ panos_panorama_address_group
- \ panos_panorama_address_object
- \ panos_panorama_administrative_tag
- \ panos_panorama_aggregate_interface
- \ panos_panorama_application_group
- \ panos_panorama_application_object
- \ panos_panorama_application_signature
- \ panos_panorama_bfd_profile
- \ panos_panorama_bgp
- \ panos_panorama_bgp_aggregate
- \ panos_panorama_bgp_aggregate_advertise_filter
- \ panos_panorama_bgp_aggregate_suppress_filter
- \ panos_panorama_bgp_auth_profile
- \ panos_panorama_bgp_conditional_adv
- \ panos_panorama_bgp_conditional_adv_advertise_filter
- \ panos_panorama_bgp_conditional_adv_non_exist_filter
- \ panos_panorama_bgp_dampening_profile
- \ panos_panorama_bgp_export_rule_group
- \ panos_panorama_bgp_import_rule_group
- \ panos_panorama_bgp_peer
- \ panos_panorama_bgp_peer_group
- \ panos_panorama_bgp_redist_rule
- \ panos_panorama_device_group
- \ panos_panorama_device_group_entry
- \ panos_panorama_edl
- \ panos_panorama_email_server_profile
- \ panos_panorama_ethernet_interface
- \ panos_panorama_gcp_account
- \ panos_panorama_gke_cluster
- \ panos_panorama_gke_cluster_group
- \ panos_panorama_gre_tunnel
- \ panos_panorama_http_server_profile
- \ panos_panorama_ike_crypto_profile
- \ panos_panorama_ike_gateway
- \ panos_panorama_ipsec_crypto_profile
- \ panos_panorama_ipsec_tunnel
- \ panos_panorama_ipsec_tunnel_proxy_id_ipv4
- \ panos_panorama_layer2_subinterface
- \ panos_panorama_layer3_subinterface
- \ panos_panorama_log_forwarding_profile
- \ panos_panorama_loopback_interface
- \ panos_panorama_management_profile
- \ panos_panorama_monitor_profile
- \ panos_panorama_nat_policy
- \ panos_panorama_nat_rule
- \ panos_panorama_nat_rule_group
- \ panos_panorama_pbf_rule_group
- \ panos_panorama_redistribution_profile_ipv4
- \ panos_panorama_security_policies
- \ panos_panorama_security_policy
- \ panos_panorama_security_policy_group
- \ panos_panorama_security_rule_group
- \ panos_panorama_service_group
- \ panos_panorama_service_object
- \ panos_panorama_snmptrap_server_profile
- \ panos_panorama_static_route_ipv4
- \ panos_panorama_syslog_server_profile
- \ panos_panorama_template
- \ panos_panorama_template_entry
- \ panos_panorama_template_stack
- \ panos_panorama_template_stack_entry
- \ panos_panorama_template_variable
- \ panos_panorama_tunnel_interface
- \ panos_panorama_virtual_router
- \ panos_panorama_virtual_router_entry
- \ panos_panorama_vlan
- \ panos_panorama_vlan_entry
- \ panos_panorama_vlan_interface
- \ panos_panorama_zone
- \ panos_panorama_zone_entry
- \ panos_pbf_rule_group
- \ panos_redistribution_profile_ipv4
- \ panos_security_policies
- \ panos_security_policy
- \ panos_security_policy_group
- \ panos_security_rule_group
- \ panos_service_group
- \ panos_service_object
- \ panos_snmptrap_server_profile
- \ panos_static_route_ipv4
- \ panos_syslog_server_profile
- \ panos_telemetry
- \ panos_tunnel_interface
- \ panos_virtual_router
- \ panos_virtual_router_entry
- \ panos_vlan
- \ panos_vlan_entry
- \ panos_vlan_interface
- \ panos_zone
- \ panos_zone_entry
- \ postgresql_database
- \ postgresql_default_privileges
- \ postgresql_extension
- \ postgresql_grant
- \ postgresql_role
- \ postgresql_schema
- \ powerdns_record
- \ powerdns_zone
- \ profitbricks_datacenter
- \ profitbricks_firewall
- \ profitbricks_group
- \ profitbricks_ipblock
- \ profitbricks_ipfailover
- \ profitbricks_lan
- \ profitbricks_loadbalancer
- \ profitbricks_nic
- \ profitbricks_resource
- \ profitbricks_server
- \ profitbricks_share
- \ profitbricks_snapshot
- \ profitbricks_user
- \ profitbricks_volume
- \ pureport_aws_connection
- \ pureport_azure_connection
- \ pureport_google_cloud_connection
- \ pureport_network
- \ pureport_site_vpn_connection
- \ rabbitmq_binding
- \ rabbitmq_exchange
- \ rabbitmq_permissions
- \ rabbitmq_policy
- \ rabbitmq_queue
- \ rabbitmq_topic_permissions
- \ rabbitmq_user
- \ rabbitmq_vhost
- \ rancher2_app
- \ rancher2_auth_config_activedirectory
- \ rancher2_auth_config_adfs
- \ rancher2_auth_config_azuread
- \ rancher2_auth_config_freeipa
- \ rancher2_auth_config_github
- \ rancher2_auth_config_keycloak
- \ rancher2_auth_config_okta
- \ rancher2_auth_config_openldap
- \ rancher2_auth_config_ping
- \ rancher2_bootstrap
- \ rancher2_catalog
- \ rancher2_certificate
- \ rancher2_cloud_credential
- \ rancher2_cluster
- \ rancher2_cluster_alert_group
- \ rancher2_cluster_alert_rule
- \ rancher2_cluster_driver
- \ rancher2_cluster_logging
- \ rancher2_cluster_role_template_binding
- \ rancher2_cluster_sync
- \ rancher2_cluster_template
- \ rancher2_etcd_backup
- \ rancher2_global_role_binding
- \ rancher2_multi_cluster_app
- \ rancher2_namespace
- \ rancher2_node_driver
- \ rancher2_node_pool
- \ rancher2_node_template
- \ rancher2_notifier
- \ rancher2_project
- \ rancher2_project_alert_group
- \ rancher2_project_alert_rule
- \ rancher2_project_logging
- \ rancher2_project_role_template_binding
- \ rancher2_registry
- \ rancher2_role_template
- \ rancher2_secret
- \ rancher2_setting
- \ rancher2_token
- \ rancher2_user
- \ rancher_certificate
- \ rancher_environment
- \ rancher_host
- \ rancher_registration_token
- \ rancher_registry
- \ rancher_registry_credential
- \ rancher_secret
- \ rancher_stack
- \ rancher_volume
- \ random_id
- \ random_integer
- \ random_password
- \ random_pet
- \ random_shuffle
- \ random_string
- \ random_uuid
- \ resource_group_name
- \ rightscale_credential
- \ rightscale_cwf_process
- \ rightscale_deployment
- \ rightscale_instance
- \ rightscale_network
- \ rightscale_network_gateway
- \ rightscale_route
- \ rightscale_route_table
- \ rightscale_security_group
- \ rightscale_security_group_rule
- \ rightscale_server
- \ rightscale_server_array
- \ rightscale_ssh_key
- \ rightscale_subnet
- \ rundeck_acl_policy
- \ rundeck_job
- \ rundeck_private_key
- \ rundeck_project
- \ rundeck_public_key
- \ runscope_bucket
- \ runscope_environment
- \ runscope_schedule
- \ runscope_step
- \ runscope_test
- \ scaffolding_resource
- \ scaleway_account_ssh_key
- \ scaleway_baremetal_server_beta
- \ scaleway_bucket
- \ scaleway_instance_ip
- \ scaleway_instance_ip_reverse_dns
- \ scaleway_instance_placement_group
- \ scaleway_instance_security_group
- \ scaleway_instance_server
- \ scaleway_instance_volume
- \ scaleway_ip
- \ scaleway_ip_reverse_dns
- \ scaleway_k8s_cluster_beta
- \ scaleway_k8s_pool_beta
- \ scaleway_lb_backend_beta
- \ scaleway_lb_beta
- \ scaleway_lb_frontend_beta
- \ scaleway_object_bucket
- \ scaleway_rdb_instance_beta
- \ scaleway_registry_namespace_beta
- \ scaleway_security_group
- \ scaleway_security_group_rule
- \ scaleway_server
- \ scaleway_ssh_key
- \ scaleway_token
- \ scaleway_user_data
- \ scaleway_volume
- \ scaleway_volume_attachment
- \ selectel_vpc_crossregion_subnet_v2
- \ selectel_vpc_floatingip_v2
- \ selectel_vpc_keypair_v2
- \ selectel_vpc_license_v2
- \ selectel_vpc_project_v2
- \ selectel_vpc_role_v2
- \ selectel_vpc_subnet_v2
- \ selectel_vpc_token_v2
- \ selectel_vpc_user_v2
- \ selectel_vpc_vrrp_subnet_v2
- \ signalfx_alert_muting_rule
- \ signalfx_aws_external_integration
- \ signalfx_aws_integration
- \ signalfx_aws_token_integration
- \ signalfx_azure_integration
- \ signalfx_dashboard
- \ signalfx_dashboard_group
- \ signalfx_data_link
- \ signalfx_detector
- \ signalfx_event_feed_chart
- \ signalfx_gcp_integration
- \ signalfx_heatmap_chart
- \ signalfx_jira_integration
- \ signalfx_list_chart
- \ signalfx_opsgenie_integration
- \ signalfx_org_token
- \ signalfx_pagerduty_integration
- \ signalfx_single_value_chart
- \ signalfx_slack_integration
- \ signalfx_team
- \ signalfx_text_chart
- \ signalfx_time_chart
- \ signalfx_victor_ops_integration
- \ skytap_environment
- \ skytap_icnr_tunnel
- \ skytap_label_category
- \ skytap_network
- \ skytap_project
- \ skytap_vm
- \ softlayer_ssh_key
- \ softlayer_virtual_guest
- \ stackpath_compute_network_policy
- \ stackpath_compute_workload
- \ statuscake_test
- \ telefonicaopencloud_antiddos_v1
- \ telefonicaopencloud_as_configuration_v1
- \ telefonicaopencloud_as_group_v1
- \ telefonicaopencloud_as_policy_v1
- \ telefonicaopencloud_blockstorage_volume_v2
- \ telefonicaopencloud_ces_alarmrule
- \ telefonicaopencloud_compute_bms_server_v2
- \ telefonicaopencloud_compute_floatingip_associate_v2
- \ telefonicaopencloud_compute_floatingip_v2
- \ telefonicaopencloud_compute_instance_v2
- \ telefonicaopencloud_compute_keypair_v2
- \ telefonicaopencloud_compute_secgroup_v2
- \ telefonicaopencloud_compute_servergroup_v2
- \ telefonicaopencloud_compute_volume_attach_v2
- \ telefonicaopencloud_csbs_backup_policy_v1
- \ telefonicaopencloud_csbs_backup_v1
- \ telefonicaopencloud_cts_tracker_v1
- \ telefonicaopencloud_dcs_instance_v1
- \ telefonicaopencloud_dms_group_v1
- \ telefonicaopencloud_dms_queue_v1
- \ telefonicaopencloud_dns_recordset_v2
- \ telefonicaopencloud_dns_zone_v2
- \ telefonicaopencloud_elb_backendecs
- \ telefonicaopencloud_elb_healthcheck
- \ telefonicaopencloud_elb_listener
- \ telefonicaopencloud_elb_loadbalancer
- \ telefonicaopencloud_fw_firewall_group_v2
- \ telefonicaopencloud_fw_policy_v2
- \ telefonicaopencloud_fw_rule_v2
- \ telefonicaopencloud_maas_task_v1
- \ telefonicaopencloud_mrs_cluster_v1
- \ telefonicaopencloud_mrs_job_v1
- \ telefonicaopencloud_networking_floatingip_v2
- \ telefonicaopencloud_networking_network_v2
- \ telefonicaopencloud_networking_port_v2
- \ telefonicaopencloud_networking_router_interface_v2
- \ telefonicaopencloud_networking_router_route_v2
- \ telefonicaopencloud_networking_router_v2
- \ telefonicaopencloud_networking_secgroup_rule_v2
- \ telefonicaopencloud_networking_secgroup_v2
- \ telefonicaopencloud_networking_subnet_v2
- \ telefonicaopencloud_rds_instance_v1
- \ telefonicaopencloud_rts_software_config_v1
- \ telefonicaopencloud_rts_stack_resource_v1
- \ telefonicaopencloud_rts_stack_v1
- \ telefonicaopencloud_s3_bucket
- \ telefonicaopencloud_s3_bucket_object
- \ telefonicaopencloud_s3_bucket_policy
- \ telefonicaopencloud_sfs_file_system_v2
- \ telefonicaopencloud_smn_subscription_v2
- \ telefonicaopencloud_smn_topic_v2
- \ telefonicaopencloud_vbs_backup_policy_v2
- \ telefonicaopencloud_vbs_backup_v2
- \ telefonicaopencloud_vpc_eip_v1
- \ telefonicaopencloud_vpc_peering_connection_accepter_v2
- \ telefonicaopencloud_vpc_peering_connection_v2
- \ telefonicaopencloud_vpc_subnet_v1
- \ telefonicaopencloud_vpc_v1
- \ template_dir
- \ tencentcloud_alb_server_attachment
- \ tencentcloud_as_attachment
- \ tencentcloud_as_lifecycle_hook
- \ tencentcloud_as_notification
- \ tencentcloud_as_scaling_config
- \ tencentcloud_as_scaling_group
- \ tencentcloud_as_scaling_policy
- \ tencentcloud_as_schedule
- \ tencentcloud_cam_group
- \ tencentcloud_cam_group_membership
- \ tencentcloud_cam_group_policy_attachment
- \ tencentcloud_cam_policy
- \ tencentcloud_cam_role
- \ tencentcloud_cam_role_policy_attachment
- \ tencentcloud_cam_saml_provider
- \ tencentcloud_cam_user
- \ tencentcloud_cam_user_policy_attachment
- \ tencentcloud_cbs_snapshot
- \ tencentcloud_cbs_snapshot_policy
- \ tencentcloud_cbs_snapshot_policy_attachment
- \ tencentcloud_cbs_storage
- \ tencentcloud_cbs_storage_attachment
- \ tencentcloud_ccn
- \ tencentcloud_ccn_attachment
- \ tencentcloud_ccn_bandwidth_limit
- \ tencentcloud_cfs_access_group
- \ tencentcloud_cfs_access_rule
- \ tencentcloud_cfs_file_system
- \ tencentcloud_clb_attachment
- \ tencentcloud_clb_instance
- \ tencentcloud_clb_listener
- \ tencentcloud_clb_listener_rule
- \ tencentcloud_clb_redirection
- \ tencentcloud_container_cluster
- \ tencentcloud_container_cluster_instance
- \ tencentcloud_cos_bucket
- \ tencentcloud_cos_bucket_object
- \ tencentcloud_dayu_cc_http_policy
- \ tencentcloud_dayu_cc_https_policy
- \ tencentcloud_dayu_ddos_policy
- \ tencentcloud_dayu_ddos_policy_attachment
- \ tencentcloud_dayu_ddos_policy_case
- \ tencentcloud_dayu_l4_rule
- \ tencentcloud_dayu_l7_rule
- \ tencentcloud_dc_gateway
- \ tencentcloud_dc_gateway_ccn_route
- \ tencentcloud_dcx
- \ tencentcloud_dnat
- \ tencentcloud_eip
- \ tencentcloud_eip_association
- \ tencentcloud_eni
- \ tencentcloud_eni_attachment
- \ tencentcloud_gaap_certificate
- \ tencentcloud_gaap_domain_error_page
- \ tencentcloud_gaap_http_domain
- \ tencentcloud_gaap_http_rule
- \ tencentcloud_gaap_layer4_listener
- \ tencentcloud_gaap_layer7_listener
- \ tencentcloud_gaap_proxy
- \ tencentcloud_gaap_realserver
- \ tencentcloud_gaap_security_policy
- \ tencentcloud_gaap_security_rule
- \ tencentcloud_ha_vip
- \ tencentcloud_ha_vip_eip_attachment
- \ tencentcloud_instance
- \ tencentcloud_key_pair
- \ tencentcloud_kubernetes_as_scaling_group
- \ tencentcloud_kubernetes_cluster
- \ tencentcloud_kubernetes_scale_worker
- \ tencentcloud_lb
- \ tencentcloud_mongodb_instance
- \ tencentcloud_mongodb_sharding_instance
- \ tencentcloud_mysql_account
- \ tencentcloud_mysql_account_privilege
- \ tencentcloud_mysql_backup_policy
- \ tencentcloud_mysql_instance
- \ tencentcloud_mysql_privilege
- \ tencentcloud_mysql_readonly_instance
- \ tencentcloud_nat_gateway
- \ tencentcloud_placement_group
- \ tencentcloud_redis_backup_config
- \ tencentcloud_redis_instance
- \ tencentcloud_reserved_instance
- \ tencentcloud_route_entry
- \ tencentcloud_route_table
- \ tencentcloud_route_table_entry
- \ tencentcloud_scf_function
- \ tencentcloud_scf_namespace
- \ tencentcloud_security_group
- \ tencentcloud_security_group_lite_rule
- \ tencentcloud_security_group_rule
- \ tencentcloud_ssl_certificate
- \ tencentcloud_subnet
- \ tencentcloud_tcaplus_application
- \ tencentcloud_tcaplus_idl
- \ tencentcloud_tcaplus_table
- \ tencentcloud_tcaplus_zone
- \ tencentcloud_vpc
- \ tencentcloud_vpn_connection
- \ tencentcloud_vpn_customer_gateway
- \ tencentcloud_vpn_gateway
- \ test_resource
- \ test_resource_computed_set
- \ test_resource_config_mode
- \ test_resource_defaults
- \ test_resource_deprecated
- \ test_resource_diff_suppress
- \ test_resource_force_new
- \ test_resource_gh12183
- \ test_resource_import_other
- \ test_resource_import_removed
- \ test_resource_list
- \ test_resource_list_set
- \ test_resource_map
- \ test_resource_nested
- \ test_resource_nested_id
- \ test_resource_nested_set
- \ test_resource_state_func
- \ test_resource_timeout
- \ test_resource_with_custom_diff
- \ test_undeleteable
- \ tfe_notification_configuration
- \ tfe_oauth_client
- \ tfe_organization
- \ tfe_organization_token
- \ tfe_policy_set
- \ tfe_sentinel_policy
- \ tfe_ssh_key
- \ tfe_team
- \ tfe_team_access
- \ tfe_team_member
- \ tfe_team_members
- \ tfe_team_token
- \ tfe_variable
- \ tfe_workspace
- \ tls_cert_request
- \ tls_locally_signed_cert
- \ tls_private_key
- \ tls_self_signed_cert
- \ triton_fabric
- \ triton_firewall_rule
- \ triton_instance_template
- \ triton_key
- \ triton_machine
- \ triton_service_group
- \ triton_snapshot
- \ triton_vlan
- \ ucloud_db_instance
- \ ucloud_disk
- \ ucloud_disk_attachment
- \ ucloud_eip
- \ ucloud_eip_association
- \ ucloud_instance
- \ ucloud_isolation_group
- \ ucloud_lb
- \ ucloud_lb_attachment
- \ ucloud_lb_listener
- \ ucloud_lb_rule
- \ ucloud_lb_ssl
- \ ucloud_lb_ssl_attachment
- \ ucloud_memcache_instance
- \ ucloud_nat_gateway
- \ ucloud_nat_gateway_rule
- \ ucloud_redis_instance
- \ ucloud_security_group
- \ ucloud_subnet
- \ ucloud_udpn_connection
- \ ucloud_vip
- \ ucloud_vpc
- \ ucloud_vpc_peering_connection
- \ ucloud_vpn_connection
- \ ucloud_vpn_customer_gateway
- \ ucloud_vpn_gateway
- \ ultradns_dirpool
- \ ultradns_probe_http
- \ ultradns_probe_ping
- \ ultradns_rdpool
- \ ultradns_record
- \ ultradns_tcpool
- \ venafi_certificate
- \ vra7_deployment
- \ vsphere_compute_cluster
- \ vsphere_compute_cluster_host_group
- \ vsphere_compute_cluster_vm_affinity_rule
- \ vsphere_compute_cluster_vm_anti_affinity_rule
- \ vsphere_compute_cluster_vm_dependency_rule
- \ vsphere_compute_cluster_vm_group
- \ vsphere_compute_cluster_vm_host_rule
- \ vsphere_custom_attribute
- \ vsphere_datacenter
- \ vsphere_datastore_cluster
- \ vsphere_datastore_cluster_vm_anti_affinity_rule
- \ vsphere_distributed_port_group
- \ vsphere_distributed_virtual_switch
- \ vsphere_dpm_host_override
- \ vsphere_drs_vm_override
- \ vsphere_file
- \ vsphere_folder
- \ vsphere_ha_vm_override
- \ vsphere_host
- \ vsphere_host_port_group
- \ vsphere_host_virtual_switch
- \ vsphere_license
- \ vsphere_nas_datastore
- \ vsphere_resource_pool
- \ vsphere_storage_drs_vm_override
- \ vsphere_tag
- \ vsphere_tag_category
- \ vsphere_vapp_container
- \ vsphere_vapp_entity
- \ vsphere_virtual_disk
- \ vsphere_virtual_machine
- \ vsphere_virtual_machine_snapshot
- \ vsphere_vmfs_datastore
- \ vsphere_vnic
- \ vthunder_ethernet
- \ vthunder_rib_route
- \ vthunder_server
- \ vthunder_service_group
- \ vthunder_virtual_server
- \ vultr_bare_metal_server
- \ vultr_block_storage
- \ vultr_dns_domain
- \ vultr_dns_record
- \ vultr_firewall_group
- \ vultr_firewall_rule
- \ vultr_iso_private
- \ vultr_network
- \ vultr_reserved_ip
- \ vultr_server
- \ vultr_snapshot
- \ vultr_snapshot_from_url
- \ vultr_ssh_key
- \ vultr_startup_script
- \ vultr_user
- \ yandex_compute_disk
- \ yandex_compute_image
- \ yandex_compute_instance
- \ yandex_compute_instance_group
- \ yandex_compute_snapshot
- \ yandex_container_registry
- \ yandex_dataproc_cluster
- \ yandex_iam_service_account
- \ yandex_iam_service_account_api_key
- \ yandex_iam_service_account_iam_binding
- \ yandex_iam_service_account_iam_member
- \ yandex_iam_service_account_iam_policy
- \ yandex_iam_service_account_key
- \ yandex_iam_service_account_static_access_key
- \ yandex_kms_symmetric_key
- \ yandex_kubernetes_cluster
- \ yandex_kubernetes_node_group
- \ yandex_lb_network_load_balancer
- \ yandex_lb_target_group
- \ yandex_mdb_clickhouse_cluster
- \ yandex_mdb_mongodb_cluster
- \ yandex_mdb_mysql_cluster
- \ yandex_mdb_postgresql_cluster
- \ yandex_mdb_redis_cluster
- \ yandex_resourcemanager_cloud
- \ yandex_resourcemanager_cloud_iam_binding
- \ yandex_resourcemanager_cloud_iam_member
- \ yandex_resourcemanager_folder
- \ yandex_resourcemanager_folder_iam_binding
- \ yandex_resourcemanager_folder_iam_member
- \ yandex_resourcemanager_folder_iam_policy
- \ yandex_storage_bucket
- \ yandex_storage_object
- \ yandex_vpc_network
- \ yandex_vpc_route_table
- \ yandex_vpc_subnet
-""" end resources
-
-syn keyword terraSection connection output variable terraform locals
syn keyword terraValueBool true false on off yes no
-syn keyword terraTodo contained TODO FIXME XXX BUG
+syn keyword terraTodo contained TODO FIXME XXX BUG TF-UPGRADE-TODO
syn region terraComment start="/\*" end="\*/" contains=terraTodo,@Spell
syn region terraComment start="#" end="$" contains=terraTodo,@Spell
syn region terraComment start="//" end="$" contains=terraTodo,@Spell
-syn keyword terraResource resource nextgroup=terraResourceTypeStr skipwhite
-syn region terraResourceTypeStr start=/"/ end=/"/ contains=terraResourceTypeBI nextgroup=terraResourceName skipwhite
-syn region terraResourceName start=/"/ end=/"/ nextgroup=terraResourceBlock skipwhite
-
-syn keyword terraData data nextgroup=terraDataTypeStr skipwhite
-syn region terraDataTypeStr start=/"/ end=/"/ contains=terraDataTypeBI nextgroup=terraDataName skipwhite
-syn region terraDataName start=/"/ end=/"/ nextgroup=terraDataBlock skipwhite
-
-""" provider
-syn keyword terraProvider provider nextgroup=terraProviderName skipwhite
-syn region terraProviderName start=/"/ end=/"/ nextgroup=terraProviderBlock skipwhite
-
-""" provisioner
-syn keyword terraProvisioner provisioner nextgroup=terraProvisionerName skipwhite
-syn region terraProvisionerName start=/"/ end=/"/ nextgroup=terraProvisionerBlock skipwhite
-
-""" module
-syn keyword terraModule module nextgroup=terraModuleName skipwhite
-syn region terraModuleName start=/"/ end=/"/ nextgroup=terraModuleBlock skipwhite
-
-""" dynamic (HCL2)
-syn keyword terraDynamic dynamic nextgroup=terraDynamicName skipwhite
-syn region terraDynamicName start=/"/ end=/"/ nextgroup=terraDynamicBlock skipwhite
-
""" misc.
syn match terraValueDec "\<[0-9]\+\([kKmMgG]b\?\)\?\>"
syn match terraValueHexaDec "\<0x[0-9a-f]\+\([kKmMgG]b\?\)\?\>"
@@ -5452,55 +41,30 @@ syn region terraStringInterp matchgroup=terraBraces start=/\${/ end=/}/ contain
syn region terraHereDocText start=/<<-\?\z([a-z0-9A-Z]\+\)/ end=/^\s*\z1/ contains=terraStringInterp
"" Functions.
-syn match terraValueFunction "[a-z0-9]\+(\@="
+syn match terraFunction "[a-z0-9]\+(\@="
""" HCL2
-syn keyword terraContent content
syn keyword terraRepeat for in
syn keyword terraConditional if
-syn keyword terraPrimitiveType string bool number
-syn keyword terraStructuralType object tuple
-syn keyword terraCollectionType list map set
+syn keyword terraType string bool number object tuple list map set any
syn keyword terraValueNull null
-""" Terraform v0.12
-syn keyword terraTodo contained TF-UPGRADE-TODO
-
" enable block folding
-syn region terraBlock matchgroup=terraBraces start="{" end="}" fold transparent
+syn region terraBlockBody matchgroup=terraBraces start="{" end="}" fold transparent
hi def link terraComment Comment
hi def link terraTodo Todo
-hi def link terraProvider Structure
hi def link terraBraces Delimiter
-hi def link terraProviderName String
-hi def link terraResource Structure
-hi def link terraResourceName String
-hi def link terraResourceTypeBI Tag
-hi def link terraResourceTypeStr String
-hi def link terraData Structure
-hi def link terraDataName String
-hi def link terraDataTypeBI Tag
-hi def link terraDataTypeStr String
-hi def link terraSection Structure
+hi def link terraBlockType Structure
hi def link terraValueBool Boolean
hi def link terraValueDec Number
hi def link terraValueHexaDec Number
hi def link terraValueString String
hi def link terraHereDocText String
-hi def link terraProvisioner Structure
-hi def link terraProvisionerName String
-hi def link terraModule Structure
-hi def link terraModuleName String
-hi def link terraValueFunction Function
-hi def link terraDynamic Structure
-hi def link terraDynamicName String
-hi def link terraContent Structure
+hi def link terraFunction Function
hi def link terraRepeat Repeat
hi def link terraConditional Conditional
-hi def link terraPrimitiveType Type
-hi def link terraStructuralType Type
-hi def link terraCollectionType Type
+hi def link terraType Type
hi def link terraValueNull Constant
let b:current_syntax = 'terraform'
diff --git a/syntax/toml.vim b/syntax/toml.vim
index 76ba8bb5..4838b0d9 100644
--- a/syntax/toml.vim
+++ b/syntax/toml.vim
@@ -5,7 +5,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'toml') == -1
" URL: https://github.com/cespare/vim-toml
" LICENSE: MIT
-if exists("b:current_syntax")
+if exists('b:current_syntax')
finish
endif
@@ -75,6 +75,6 @@ hi def link tomlComment Comment
syn sync minlines=500
-let b:current_syntax = "toml"
+let b:current_syntax = 'toml'
endif
diff --git a/syntax/zig.vim b/syntax/zig.vim
index a4e48d64..9ab64571 100644
--- a/syntax/zig.vim
+++ b/syntax/zig.vim
@@ -10,7 +10,7 @@ if exists("b:current_syntax")
endif
let b:current_syntax = "zig"
-syn keyword zigStorage const var extern packed export pub noalias inline noinline comptime callconv volatile allowzero align linksection threadlocal
+syn keyword zigStorage const var extern packed export pub noalias inline noinline comptime callconv volatile allowzero align linksection threadlocal anytype
syn keyword zigStructure struct enum union error
syn keyword zigStatement break return continue asm defer errdefer unreachable try catch async nosuspend await suspend resume
syn keyword zigConditional if else switch and or orelse
@@ -26,8 +26,8 @@ syn keyword zigBoolean true false
syn match zigType "\v<[iu][1-9]\d*>"
-syn match zigOperator display "\%(+%\?\|-%\?\|/\|*%\?\|=\|\^\|&\|?\||\|!\|>\|<\|%\|<<%\?\|>>\)=\?"
-syn match zigArrowCharacter display "->"
+syn match zigOperator display "\V\[-+/*=^&?|!><%~]"
+syn match zigArrowCharacter display "\V->"
syn match zigBuiltinFn "\v\@(addWithOverflow|as|atomicLoad|atomicStore|bitCast|breakpoint)>"
syn match zigBuiltinFn "\v\@(alignCast|alignOf|cDefine|cImport|cInclude)>"