index.html 142 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="icon" href="../../assets/images/favicon.png">
  7. <meta name="generator" content="mkdocs-1.2.3, mkdocs-material-8.1.10">
  8. <title>API specification - External Secrets Operator</title>
  9. <link rel="stylesheet" href="../../assets/stylesheets/main.d6be258b.min.css">
  10. <link rel="stylesheet" href="../../assets/stylesheets/palette.e6a45f82.min.css">
  11. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
  13. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  14. <script>__md_scope=new URL("../..",location),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  15. <script>function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&gtag("event","search",{search_term:this.value})}),"undefined"!=typeof location$&&location$.subscribe(function(e){gtag("config","G-QP38TD8K7V",{page_path:e.pathname})})})</script>
  16. <script async src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V"></script>
  17. </head>
  18. <body dir="ltr" data-md-color-scheme="" data-md-color-primary="none" data-md-color-accent="none">
  19. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  20. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  21. <label class="md-overlay" for="__drawer"></label>
  22. <div data-md-component="skip">
  23. </div>
  24. <div data-md-component="announce">
  25. </div>
  26. <div data-md-component="outdated" hidden>
  27. <aside class="md-banner md-banner--warning">
  28. <div class="md-banner__inner md-grid md-typeset">
  29. You're not viewing the latest version.
  30. <a href="../../..">
  31. <strong>Click here to go to latest.</strong>
  32. </a>
  33. </div>
  34. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  35. </aside>
  36. </div>
  37. <header class="md-header" data-md-component="header">
  38. <nav class="md-header__inner md-grid" aria-label="Header">
  39. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  40. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg>
  41. </a>
  42. <label class="md-header__button md-icon" for="__drawer">
  43. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z"/></svg>
  44. </label>
  45. <div class="md-header__title" data-md-component="header-title">
  46. <div class="md-header__ellipsis">
  47. <div class="md-header__topic">
  48. <span class="md-ellipsis">
  49. External Secrets Operator
  50. </span>
  51. </div>
  52. <div class="md-header__topic" data-md-component="header-topic">
  53. <span class="md-ellipsis">
  54. API specification
  55. </span>
  56. </div>
  57. </div>
  58. </div>
  59. <label class="md-header__button md-icon" for="__search">
  60. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg>
  61. </label>
  62. <div class="md-search" data-md-component="search" role="dialog">
  63. <label class="md-search__overlay" for="__search"></label>
  64. <div class="md-search__inner" role="search">
  65. <form class="md-search__form" name="search">
  66. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  67. <label class="md-search__icon md-icon" for="__search">
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg>
  69. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg>
  70. </label>
  71. <nav class="md-search__options" aria-label="Search">
  72. <button type="reset" class="md-search__icon md-icon" aria-label="Clear" tabindex="-1">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>
  74. </button>
  75. </nav>
  76. </form>
  77. <div class="md-search__output">
  78. <div class="md-search__scrollwrap" data-md-scrollfix>
  79. <div class="md-search-result" data-md-component="search-result">
  80. <div class="md-search-result__meta">
  81. Initializing search
  82. </div>
  83. <ol class="md-search-result__list"></ol>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="md-header__source">
  90. <a href="https://github.com/external-secrets/external-secrets/" title="Go to repository" class="md-source" data-md-component="source">
  91. <div class="md-source__icon md-icon">
  92. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  93. </div>
  94. <div class="md-source__repository">
  95. External Secrets Operator
  96. </div>
  97. </a>
  98. </div>
  99. </nav>
  100. </header>
  101. <div class="md-container" data-md-component="container">
  102. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  103. <div class="md-tabs__inner md-grid">
  104. <ul class="md-tabs__list">
  105. <li class="md-tabs__item">
  106. <a href="../.." class="md-tabs__link">
  107. Introduction
  108. </a>
  109. </li>
  110. <li class="md-tabs__item">
  111. <a href="../components/" class="md-tabs__link md-tabs__link--active">
  112. API
  113. </a>
  114. </li>
  115. <li class="md-tabs__item">
  116. <a href="../../guides/introduction/" class="md-tabs__link">
  117. Guides
  118. </a>
  119. </li>
  120. <li class="md-tabs__item">
  121. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  122. Provider
  123. </a>
  124. </li>
  125. <li class="md-tabs__item">
  126. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  127. Examples
  128. </a>
  129. </li>
  130. <li class="md-tabs__item">
  131. <a href="../../contributing/devguide/" class="md-tabs__link">
  132. Community
  133. </a>
  134. </li>
  135. </ul>
  136. </div>
  137. </nav>
  138. <main class="md-main" data-md-component="main">
  139. <div class="md-main__inner md-grid">
  140. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  141. <div class="md-sidebar__scrollwrap">
  142. <div class="md-sidebar__inner">
  143. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  144. <label class="md-nav__title" for="__drawer">
  145. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  146. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg>
  147. </a>
  148. External Secrets Operator
  149. </label>
  150. <div class="md-nav__source">
  151. <a href="https://github.com/external-secrets/external-secrets/" title="Go to repository" class="md-source" data-md-component="source">
  152. <div class="md-source__icon md-icon">
  153. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  154. </div>
  155. <div class="md-source__repository">
  156. External Secrets Operator
  157. </div>
  158. </a>
  159. </div>
  160. <ul class="md-nav__list" data-md-scrollfix>
  161. <li class="md-nav__item md-nav__item--nested">
  162. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_1" data-md-state="indeterminate" type="checkbox" id="__nav_1" checked>
  163. <div class="md-nav__link md-nav__link--index ">
  164. <a href="../..">Introduction</a>
  165. <label for="__nav_1">
  166. <span class="md-nav__icon md-icon"></span>
  167. </label>
  168. </div>
  169. <nav class="md-nav" aria-label="Introduction" data-md-level="1">
  170. <label class="md-nav__title" for="__nav_1">
  171. <span class="md-nav__icon md-icon"></span>
  172. Introduction
  173. </label>
  174. <ul class="md-nav__list" data-md-scrollfix>
  175. <li class="md-nav__item">
  176. <a href="../../introduction/overview/" class="md-nav__link">
  177. Overview
  178. </a>
  179. </li>
  180. <li class="md-nav__item">
  181. <a href="../../introduction/getting-started/" class="md-nav__link">
  182. Getting started
  183. </a>
  184. </li>
  185. <li class="md-nav__item">
  186. <a href="../../introduction/faq/" class="md-nav__link">
  187. FAQ
  188. </a>
  189. </li>
  190. <li class="md-nav__item">
  191. <a href="../../introduction/stability-support/" class="md-nav__link">
  192. Stability and Support
  193. </a>
  194. </li>
  195. <li class="md-nav__item">
  196. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  197. Deprecation Policy
  198. </a>
  199. </li>
  200. </ul>
  201. </nav>
  202. </li>
  203. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  204. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_2" type="checkbox" id="__nav_2" checked>
  205. <label class="md-nav__link" for="__nav_2">
  206. API
  207. <span class="md-nav__icon md-icon"></span>
  208. </label>
  209. <nav class="md-nav" aria-label="API" data-md-level="1">
  210. <label class="md-nav__title" for="__nav_2">
  211. <span class="md-nav__icon md-icon"></span>
  212. API
  213. </label>
  214. <ul class="md-nav__list" data-md-scrollfix>
  215. <li class="md-nav__item">
  216. <a href="../components/" class="md-nav__link">
  217. Components
  218. </a>
  219. </li>
  220. <li class="md-nav__item md-nav__item--nested">
  221. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_2_2" data-md-state="indeterminate" type="checkbox" id="__nav_2_2" checked>
  222. <label class="md-nav__link" for="__nav_2_2">
  223. Core Resources
  224. <span class="md-nav__icon md-icon"></span>
  225. </label>
  226. <nav class="md-nav" aria-label="Core Resources" data-md-level="2">
  227. <label class="md-nav__title" for="__nav_2_2">
  228. <span class="md-nav__icon md-icon"></span>
  229. Core Resources
  230. </label>
  231. <ul class="md-nav__list" data-md-scrollfix>
  232. <li class="md-nav__item">
  233. <a href="../externalsecret/" class="md-nav__link">
  234. ExternalSecret
  235. </a>
  236. </li>
  237. <li class="md-nav__item">
  238. <a href="../secretstore/" class="md-nav__link">
  239. SecretStore
  240. </a>
  241. </li>
  242. <li class="md-nav__item">
  243. <a href="../clustersecretstore/" class="md-nav__link">
  244. ClusterSecretStore
  245. </a>
  246. </li>
  247. <li class="md-nav__item">
  248. <a href="../clusterexternalsecret/" class="md-nav__link">
  249. ClusterExternalSecret
  250. </a>
  251. </li>
  252. </ul>
  253. </nav>
  254. </li>
  255. <li class="md-nav__item md-nav__item--nested">
  256. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_2_3" data-md-state="indeterminate" type="checkbox" id="__nav_2_3" checked>
  257. <div class="md-nav__link md-nav__link--index ">
  258. <a href="../generator/">Generators</a>
  259. <label for="__nav_2_3">
  260. <span class="md-nav__icon md-icon"></span>
  261. </label>
  262. </div>
  263. <nav class="md-nav" aria-label="Generators" data-md-level="2">
  264. <label class="md-nav__title" for="__nav_2_3">
  265. <span class="md-nav__icon md-icon"></span>
  266. Generators
  267. </label>
  268. <ul class="md-nav__list" data-md-scrollfix>
  269. <li class="md-nav__item">
  270. <a href="../generator/acr/" class="md-nav__link">
  271. Azure Container Registry
  272. </a>
  273. </li>
  274. <li class="md-nav__item">
  275. <a href="../generator/ecr/" class="md-nav__link">
  276. AWS Elastic Container Registry
  277. </a>
  278. </li>
  279. <li class="md-nav__item">
  280. <a href="../generator/gcr/" class="md-nav__link">
  281. Google Container Registry
  282. </a>
  283. </li>
  284. <li class="md-nav__item">
  285. <a href="../generator/password/" class="md-nav__link">
  286. Password
  287. </a>
  288. </li>
  289. <li class="md-nav__item">
  290. <a href="../generator/fake/" class="md-nav__link">
  291. Fake
  292. </a>
  293. </li>
  294. </ul>
  295. </nav>
  296. </li>
  297. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  298. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_2_4" type="checkbox" id="__nav_2_4" checked>
  299. <label class="md-nav__link" for="__nav_2_4">
  300. Reference Docs
  301. <span class="md-nav__icon md-icon"></span>
  302. </label>
  303. <nav class="md-nav" aria-label="Reference Docs" data-md-level="2">
  304. <label class="md-nav__title" for="__nav_2_4">
  305. <span class="md-nav__icon md-icon"></span>
  306. Reference Docs
  307. </label>
  308. <ul class="md-nav__list" data-md-scrollfix>
  309. <li class="md-nav__item md-nav__item--active">
  310. <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
  311. <a href="./" class="md-nav__link md-nav__link--active">
  312. API specification
  313. </a>
  314. </li>
  315. <li class="md-nav__item">
  316. <a href="../controller-options/" class="md-nav__link">
  317. Controller Options
  318. </a>
  319. </li>
  320. <li class="md-nav__item">
  321. <a href="../metrics/" class="md-nav__link">
  322. Metrics
  323. </a>
  324. </li>
  325. </ul>
  326. </nav>
  327. </li>
  328. </ul>
  329. </nav>
  330. </li>
  331. <li class="md-nav__item md-nav__item--nested">
  332. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_3" data-md-state="indeterminate" type="checkbox" id="__nav_3" checked>
  333. <label class="md-nav__link" for="__nav_3">
  334. Guides
  335. <span class="md-nav__icon md-icon"></span>
  336. </label>
  337. <nav class="md-nav" aria-label="Guides" data-md-level="1">
  338. <label class="md-nav__title" for="__nav_3">
  339. <span class="md-nav__icon md-icon"></span>
  340. Guides
  341. </label>
  342. <ul class="md-nav__list" data-md-scrollfix>
  343. <li class="md-nav__item">
  344. <a href="../../guides/introduction/" class="md-nav__link">
  345. Introduction
  346. </a>
  347. </li>
  348. <li class="md-nav__item md-nav__item--nested">
  349. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_3_2" data-md-state="indeterminate" type="checkbox" id="__nav_3_2" checked>
  350. <label class="md-nav__link" for="__nav_3_2">
  351. Advanced Templating
  352. <span class="md-nav__icon md-icon"></span>
  353. </label>
  354. <nav class="md-nav" aria-label="Advanced Templating" data-md-level="2">
  355. <label class="md-nav__title" for="__nav_3_2">
  356. <span class="md-nav__icon md-icon"></span>
  357. Advanced Templating
  358. </label>
  359. <ul class="md-nav__list" data-md-scrollfix>
  360. <li class="md-nav__item">
  361. <a href="../../guides/templating/" class="md-nav__link">
  362. v2
  363. </a>
  364. </li>
  365. <li class="md-nav__item">
  366. <a href="../../guides/templating-v1/" class="md-nav__link">
  367. v1
  368. </a>
  369. </li>
  370. </ul>
  371. </nav>
  372. </li>
  373. <li class="md-nav__item">
  374. <a href="../../guides/generator/" class="md-nav__link">
  375. Generators
  376. </a>
  377. </li>
  378. <li class="md-nav__item">
  379. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  380. All keys, One secret
  381. </a>
  382. </li>
  383. <li class="md-nav__item">
  384. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  385. Common K8S Secret Types
  386. </a>
  387. </li>
  388. <li class="md-nav__item">
  389. <a href="../../guides/controller-class/" class="md-nav__link">
  390. Controller Classes
  391. </a>
  392. </li>
  393. <li class="md-nav__item">
  394. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  395. Lifecycle: ownership & deletion
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  400. Decoding Strategies
  401. </a>
  402. </li>
  403. <li class="md-nav__item">
  404. <a href="../../guides/getallsecrets/" class="md-nav__link">
  405. Getting Multiple Secrets
  406. </a>
  407. </li>
  408. <li class="md-nav__item">
  409. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  410. Multi Tenancy
  411. </a>
  412. </li>
  413. <li class="md-nav__item">
  414. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  415. Rewriting Keys
  416. </a>
  417. </li>
  418. <li class="md-nav__item">
  419. <a href="../../guides/v1beta1/" class="md-nav__link">
  420. Upgrading to v1beta1
  421. </a>
  422. </li>
  423. <li class="md-nav__item">
  424. <a href="../../guides/using-latest-image/" class="md-nav__link">
  425. Using Latest Image
  426. </a>
  427. </li>
  428. </ul>
  429. </nav>
  430. </li>
  431. <li class="md-nav__item md-nav__item--nested">
  432. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_4" data-md-state="indeterminate" type="checkbox" id="__nav_4" checked>
  433. <label class="md-nav__link" for="__nav_4">
  434. Provider
  435. <span class="md-nav__icon md-icon"></span>
  436. </label>
  437. <nav class="md-nav" aria-label="Provider" data-md-level="1">
  438. <label class="md-nav__title" for="__nav_4">
  439. <span class="md-nav__icon md-icon"></span>
  440. Provider
  441. </label>
  442. <ul class="md-nav__list" data-md-scrollfix>
  443. <li class="md-nav__item">
  444. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  445. AWS Secrets Manager
  446. </a>
  447. </li>
  448. <li class="md-nav__item">
  449. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  450. AWS Parameter Store
  451. </a>
  452. </li>
  453. <li class="md-nav__item">
  454. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  455. Azure Key Vault
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  460. Google Secret Manager
  461. </a>
  462. </li>
  463. <li class="md-nav__item">
  464. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  465. IBM Secrets Manager
  466. </a>
  467. </li>
  468. <li class="md-nav__item">
  469. <a href="../../provider/akeyless/" class="md-nav__link">
  470. Akeyless
  471. </a>
  472. </li>
  473. <li class="md-nav__item">
  474. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  475. HashiCorp Vault
  476. </a>
  477. </li>
  478. <li class="md-nav__item">
  479. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  480. Yandex Certificate Manager
  481. </a>
  482. </li>
  483. <li class="md-nav__item">
  484. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  485. Yandex Lockbox
  486. </a>
  487. </li>
  488. <li class="md-nav__item">
  489. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  490. Gitlab Project Variables
  491. </a>
  492. </li>
  493. <li class="md-nav__item">
  494. <a href="../../provider/oracle-vault/" class="md-nav__link">
  495. Oracle Vault
  496. </a>
  497. </li>
  498. <li class="md-nav__item">
  499. <a href="../../provider/1password-automation/" class="md-nav__link">
  500. 1Password Secrets Automation
  501. </a>
  502. </li>
  503. <li class="md-nav__item">
  504. <a href="../../provider/webhook/" class="md-nav__link">
  505. Webhook
  506. </a>
  507. </li>
  508. <li class="md-nav__item">
  509. <a href="../../provider/fake/" class="md-nav__link">
  510. Fake
  511. </a>
  512. </li>
  513. <li class="md-nav__item">
  514. <a href="../../provider/kubernetes/" class="md-nav__link">
  515. Kubernetes
  516. </a>
  517. </li>
  518. <li class="md-nav__item">
  519. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  520. senhasegura DevOps Secrets Management (DSM)
  521. </a>
  522. </li>
  523. <li class="md-nav__item">
  524. <a href="../../provider/doppler/" class="md-nav__link">
  525. Doppler
  526. </a>
  527. </li>
  528. </ul>
  529. </nav>
  530. </li>
  531. <li class="md-nav__item md-nav__item--nested">
  532. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5" data-md-state="indeterminate" type="checkbox" id="__nav_5" checked>
  533. <label class="md-nav__link" for="__nav_5">
  534. Examples
  535. <span class="md-nav__icon md-icon"></span>
  536. </label>
  537. <nav class="md-nav" aria-label="Examples" data-md-level="1">
  538. <label class="md-nav__title" for="__nav_5">
  539. <span class="md-nav__icon md-icon"></span>
  540. Examples
  541. </label>
  542. <ul class="md-nav__list" data-md-scrollfix>
  543. <li class="md-nav__item">
  544. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  545. FluxCD
  546. </a>
  547. </li>
  548. <li class="md-nav__item">
  549. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  550. Anchore Engine
  551. </a>
  552. </li>
  553. <li class="md-nav__item">
  554. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  555. Jenkins
  556. </a>
  557. </li>
  558. </ul>
  559. </nav>
  560. </li>
  561. <li class="md-nav__item md-nav__item--nested">
  562. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6" data-md-state="indeterminate" type="checkbox" id="__nav_6" checked>
  563. <label class="md-nav__link" for="__nav_6">
  564. Community
  565. <span class="md-nav__icon md-icon"></span>
  566. </label>
  567. <nav class="md-nav" aria-label="Community" data-md-level="1">
  568. <label class="md-nav__title" for="__nav_6">
  569. <span class="md-nav__icon md-icon"></span>
  570. Community
  571. </label>
  572. <ul class="md-nav__list" data-md-scrollfix>
  573. <li class="md-nav__item md-nav__item--nested">
  574. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6_1" data-md-state="indeterminate" type="checkbox" id="__nav_6_1" checked>
  575. <label class="md-nav__link" for="__nav_6_1">
  576. Contributing
  577. <span class="md-nav__icon md-icon"></span>
  578. </label>
  579. <nav class="md-nav" aria-label="Contributing" data-md-level="2">
  580. <label class="md-nav__title" for="__nav_6_1">
  581. <span class="md-nav__icon md-icon"></span>
  582. Contributing
  583. </label>
  584. <ul class="md-nav__list" data-md-scrollfix>
  585. <li class="md-nav__item">
  586. <a href="../../contributing/devguide/" class="md-nav__link">
  587. Developer guide
  588. </a>
  589. </li>
  590. <li class="md-nav__item">
  591. <a href="../../contributing/process/" class="md-nav__link">
  592. Contributing Process
  593. </a>
  594. </li>
  595. <li class="md-nav__item">
  596. <a href="../../contributing/release/" class="md-nav__link">
  597. Release Process
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="../../contributing/coc/" class="md-nav__link">
  602. Code of Conduct
  603. </a>
  604. </li>
  605. <li class="md-nav__item">
  606. <a href="../../contributing/roadmap/" class="md-nav__link">
  607. Roadmap
  608. </a>
  609. </li>
  610. </ul>
  611. </nav>
  612. </li>
  613. <li class="md-nav__item md-nav__item--nested">
  614. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6_2" data-md-state="indeterminate" type="checkbox" id="__nav_6_2" checked>
  615. <label class="md-nav__link" for="__nav_6_2">
  616. External Resources
  617. <span class="md-nav__icon md-icon"></span>
  618. </label>
  619. <nav class="md-nav" aria-label="External Resources" data-md-level="2">
  620. <label class="md-nav__title" for="__nav_6_2">
  621. <span class="md-nav__icon md-icon"></span>
  622. External Resources
  623. </label>
  624. <ul class="md-nav__list" data-md-scrollfix>
  625. <li class="md-nav__item">
  626. <a href="../../eso-talks/" class="md-nav__link">
  627. Talks
  628. </a>
  629. </li>
  630. <li class="md-nav__item">
  631. <a href="../../eso-demos/" class="md-nav__link">
  632. Demos
  633. </a>
  634. </li>
  635. <li class="md-nav__item">
  636. <a href="../../eso-blogs/" class="md-nav__link">
  637. Blogs
  638. </a>
  639. </li>
  640. </ul>
  641. </nav>
  642. </li>
  643. </ul>
  644. </nav>
  645. </li>
  646. </ul>
  647. </nav>
  648. </div>
  649. </div>
  650. </div>
  651. <div class="md-content" data-md-component="content">
  652. <article class="md-content__inner md-typeset">
  653. <a href="https://github.com/external-secrets/external-secrets/edit/main/docs/api/spec.md" title="Edit this page" class="md-content__button md-icon">
  654. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25z"/></svg>
  655. </a>
  656. <h1>API specification</h1>
  657. <p>Packages:</p>
  658. <ul>
  659. <li>
  660. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  661. </li>
  662. </ul>
  663. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  664. <p>
  665. <p>Package v1beta1 contains resources for external-secrets</p>
  666. </p>
  667. <p>Resource Types:</p>
  668. <ul></ul>
  669. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  670. </h3>
  671. <p>
  672. (<em>Appears on:</em>
  673. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  674. </p>
  675. <p>
  676. <p>AWSAuth tells the controller how to do authentication with aws.
  677. Only one of secretRef or jwt can be specified.
  678. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  679. </p>
  680. <table>
  681. <thead>
  682. <tr>
  683. <th>Field</th>
  684. <th>Description</th>
  685. </tr>
  686. </thead>
  687. <tbody>
  688. <tr>
  689. <td>
  690. <code>secretRef</code></br>
  691. <em>
  692. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  693. AWSAuthSecretRef
  694. </a>
  695. </em>
  696. </td>
  697. <td>
  698. <em>(Optional)</em>
  699. </td>
  700. </tr>
  701. <tr>
  702. <td>
  703. <code>jwt</code></br>
  704. <em>
  705. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  706. AWSJWTAuth
  707. </a>
  708. </em>
  709. </td>
  710. <td>
  711. <em>(Optional)</em>
  712. </td>
  713. </tr>
  714. </tbody>
  715. </table>
  716. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  717. </h3>
  718. <p>
  719. (<em>Appears on:</em>
  720. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  721. </p>
  722. <p>
  723. <p>AWSAuthSecretRef holds secret references for AWS credentials
  724. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  725. </p>
  726. <table>
  727. <thead>
  728. <tr>
  729. <th>Field</th>
  730. <th>Description</th>
  731. </tr>
  732. </thead>
  733. <tbody>
  734. <tr>
  735. <td>
  736. <code>accessKeyIDSecretRef</code></br>
  737. <em>
  738. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  739. </em>
  740. </td>
  741. <td>
  742. <p>The AccessKeyID is used for authentication</p>
  743. </td>
  744. </tr>
  745. <tr>
  746. <td>
  747. <code>secretAccessKeySecretRef</code></br>
  748. <em>
  749. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  750. </em>
  751. </td>
  752. <td>
  753. <p>The SecretAccessKey is used for authentication</p>
  754. </td>
  755. </tr>
  756. </tbody>
  757. </table>
  758. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  759. </h3>
  760. <p>
  761. (<em>Appears on:</em>
  762. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  763. </p>
  764. <p>
  765. <p>Authenticate against AWS using service account tokens.</p>
  766. </p>
  767. <table>
  768. <thead>
  769. <tr>
  770. <th>Field</th>
  771. <th>Description</th>
  772. </tr>
  773. </thead>
  774. <tbody>
  775. <tr>
  776. <td>
  777. <code>serviceAccountRef</code></br>
  778. <em>
  779. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  780. </em>
  781. </td>
  782. <td>
  783. </td>
  784. </tr>
  785. </tbody>
  786. </table>
  787. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  788. </h3>
  789. <p>
  790. (<em>Appears on:</em>
  791. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  792. </p>
  793. <p>
  794. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  795. </p>
  796. <table>
  797. <thead>
  798. <tr>
  799. <th>Field</th>
  800. <th>Description</th>
  801. </tr>
  802. </thead>
  803. <tbody>
  804. <tr>
  805. <td>
  806. <code>service</code></br>
  807. <em>
  808. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  809. AWSServiceType
  810. </a>
  811. </em>
  812. </td>
  813. <td>
  814. <p>Service defines which service should be used to fetch the secrets</p>
  815. </td>
  816. </tr>
  817. <tr>
  818. <td>
  819. <code>auth</code></br>
  820. <em>
  821. <a href="#external-secrets.io/v1beta1.AWSAuth">
  822. AWSAuth
  823. </a>
  824. </em>
  825. </td>
  826. <td>
  827. <em>(Optional)</em>
  828. <p>Auth defines the information necessary to authenticate against AWS
  829. if not set aws sdk will infer credentials from your environment
  830. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  831. </td>
  832. </tr>
  833. <tr>
  834. <td>
  835. <code>role</code></br>
  836. <em>
  837. string
  838. </em>
  839. </td>
  840. <td>
  841. <em>(Optional)</em>
  842. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  843. </td>
  844. </tr>
  845. <tr>
  846. <td>
  847. <code>region</code></br>
  848. <em>
  849. string
  850. </em>
  851. </td>
  852. <td>
  853. <p>AWS Region to be used for the provider</p>
  854. </td>
  855. </tr>
  856. </tbody>
  857. </table>
  858. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  859. (<code>string</code> alias)</p></h3>
  860. <p>
  861. (<em>Appears on:</em>
  862. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  863. </p>
  864. <p>
  865. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  866. </p>
  867. <table>
  868. <thead>
  869. <tr>
  870. <th>Value</th>
  871. <th>Description</th>
  872. </tr>
  873. </thead>
  874. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  875. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  876. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  877. </td>
  878. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  879. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  880. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  881. </td>
  882. </tr></tbody>
  883. </table>
  884. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  885. </h3>
  886. <p>
  887. (<em>Appears on:</em>
  888. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  889. </p>
  890. <p>
  891. </p>
  892. <table>
  893. <thead>
  894. <tr>
  895. <th>Field</th>
  896. <th>Description</th>
  897. </tr>
  898. </thead>
  899. <tbody>
  900. <tr>
  901. <td>
  902. <code>secretRef</code></br>
  903. <em>
  904. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  905. AkeylessAuthSecretRef
  906. </a>
  907. </em>
  908. </td>
  909. <td>
  910. <em>(Optional)</em>
  911. <p>Reference to a Secret that contains the details
  912. to authenticate with Akeyless.</p>
  913. </td>
  914. </tr>
  915. <tr>
  916. <td>
  917. <code>kubernetesAuth</code></br>
  918. <em>
  919. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  920. AkeylessKubernetesAuth
  921. </a>
  922. </em>
  923. </td>
  924. <td>
  925. <em>(Optional)</em>
  926. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  927. token stored in the named Secret resource.</p>
  928. </td>
  929. </tr>
  930. </tbody>
  931. </table>
  932. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  933. </h3>
  934. <p>
  935. (<em>Appears on:</em>
  936. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  937. </p>
  938. <p>
  939. <p>AkeylessAuthSecretRef
  940. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  941. </p>
  942. <table>
  943. <thead>
  944. <tr>
  945. <th>Field</th>
  946. <th>Description</th>
  947. </tr>
  948. </thead>
  949. <tbody>
  950. <tr>
  951. <td>
  952. <code>accessID</code></br>
  953. <em>
  954. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  955. </em>
  956. </td>
  957. <td>
  958. <p>The SecretAccessID is used for authentication</p>
  959. </td>
  960. </tr>
  961. <tr>
  962. <td>
  963. <code>accessType</code></br>
  964. <em>
  965. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  966. </em>
  967. </td>
  968. <td>
  969. </td>
  970. </tr>
  971. <tr>
  972. <td>
  973. <code>accessTypeParam</code></br>
  974. <em>
  975. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  976. </em>
  977. </td>
  978. <td>
  979. </td>
  980. </tr>
  981. </tbody>
  982. </table>
  983. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  984. </h3>
  985. <p>
  986. (<em>Appears on:</em>
  987. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  988. </p>
  989. <p>
  990. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  991. </p>
  992. <table>
  993. <thead>
  994. <tr>
  995. <th>Field</th>
  996. <th>Description</th>
  997. </tr>
  998. </thead>
  999. <tbody>
  1000. <tr>
  1001. <td>
  1002. <code>accessID</code></br>
  1003. <em>
  1004. string
  1005. </em>
  1006. </td>
  1007. <td>
  1008. <p>the Akeyless Kubernetes auth-method access-id</p>
  1009. </td>
  1010. </tr>
  1011. <tr>
  1012. <td>
  1013. <code>k8sConfName</code></br>
  1014. <em>
  1015. string
  1016. </em>
  1017. </td>
  1018. <td>
  1019. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1020. </td>
  1021. </tr>
  1022. <tr>
  1023. <td>
  1024. <code>serviceAccountRef</code></br>
  1025. <em>
  1026. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1027. </em>
  1028. </td>
  1029. <td>
  1030. <em>(Optional)</em>
  1031. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1032. If the service account is specified, the service account secret token JWT will be used
  1033. for authenticating with Akeyless. If the service account selector is not supplied,
  1034. the secretRef will be used instead.</p>
  1035. </td>
  1036. </tr>
  1037. <tr>
  1038. <td>
  1039. <code>secretRef</code></br>
  1040. <em>
  1041. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1042. </em>
  1043. </td>
  1044. <td>
  1045. <em>(Optional)</em>
  1046. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1047. for authenticating with Akeyless. If a name is specified without a key,
  1048. <code>token</code> is the default. If one is not specified, the one bound to
  1049. the controller will be used.</p>
  1050. </td>
  1051. </tr>
  1052. </tbody>
  1053. </table>
  1054. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1055. </h3>
  1056. <p>
  1057. (<em>Appears on:</em>
  1058. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1059. </p>
  1060. <p>
  1061. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1062. </p>
  1063. <table>
  1064. <thead>
  1065. <tr>
  1066. <th>Field</th>
  1067. <th>Description</th>
  1068. </tr>
  1069. </thead>
  1070. <tbody>
  1071. <tr>
  1072. <td>
  1073. <code>akeylessGWApiURL</code></br>
  1074. <em>
  1075. string
  1076. </em>
  1077. </td>
  1078. <td>
  1079. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1080. </td>
  1081. </tr>
  1082. <tr>
  1083. <td>
  1084. <code>authSecretRef</code></br>
  1085. <em>
  1086. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1087. AkeylessAuth
  1088. </a>
  1089. </em>
  1090. </td>
  1091. <td>
  1092. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1093. </td>
  1094. </tr>
  1095. </tbody>
  1096. </table>
  1097. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1098. </h3>
  1099. <p>
  1100. (<em>Appears on:</em>
  1101. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1102. </p>
  1103. <p>
  1104. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1105. </p>
  1106. <table>
  1107. <thead>
  1108. <tr>
  1109. <th>Field</th>
  1110. <th>Description</th>
  1111. </tr>
  1112. </thead>
  1113. <tbody>
  1114. <tr>
  1115. <td>
  1116. <code>secretRef</code></br>
  1117. <em>
  1118. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1119. AlibabaAuthSecretRef
  1120. </a>
  1121. </em>
  1122. </td>
  1123. <td>
  1124. </td>
  1125. </tr>
  1126. </tbody>
  1127. </table>
  1128. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1129. </h3>
  1130. <p>
  1131. (<em>Appears on:</em>
  1132. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1133. </p>
  1134. <p>
  1135. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1136. </p>
  1137. <table>
  1138. <thead>
  1139. <tr>
  1140. <th>Field</th>
  1141. <th>Description</th>
  1142. </tr>
  1143. </thead>
  1144. <tbody>
  1145. <tr>
  1146. <td>
  1147. <code>accessKeyIDSecretRef</code></br>
  1148. <em>
  1149. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1150. </em>
  1151. </td>
  1152. <td>
  1153. <p>The AccessKeyID is used for authentication</p>
  1154. </td>
  1155. </tr>
  1156. <tr>
  1157. <td>
  1158. <code>accessKeySecretSecretRef</code></br>
  1159. <em>
  1160. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1161. </em>
  1162. </td>
  1163. <td>
  1164. <p>The AccessKeySecret is used for authentication</p>
  1165. </td>
  1166. </tr>
  1167. </tbody>
  1168. </table>
  1169. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1170. </h3>
  1171. <p>
  1172. (<em>Appears on:</em>
  1173. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1174. </p>
  1175. <p>
  1176. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1177. </p>
  1178. <table>
  1179. <thead>
  1180. <tr>
  1181. <th>Field</th>
  1182. <th>Description</th>
  1183. </tr>
  1184. </thead>
  1185. <tbody>
  1186. <tr>
  1187. <td>
  1188. <code>auth</code></br>
  1189. <em>
  1190. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1191. AlibabaAuth
  1192. </a>
  1193. </em>
  1194. </td>
  1195. <td>
  1196. </td>
  1197. </tr>
  1198. <tr>
  1199. <td>
  1200. <code>endpoint</code></br>
  1201. <em>
  1202. string
  1203. </em>
  1204. </td>
  1205. <td>
  1206. <em>(Optional)</em>
  1207. </td>
  1208. </tr>
  1209. <tr>
  1210. <td>
  1211. <code>regionID</code></br>
  1212. <em>
  1213. string
  1214. </em>
  1215. </td>
  1216. <td>
  1217. <p>Alibaba Region to be used for the provider</p>
  1218. </td>
  1219. </tr>
  1220. </tbody>
  1221. </table>
  1222. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1223. (<code>string</code> alias)</p></h3>
  1224. <p>
  1225. (<em>Appears on:</em>
  1226. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1227. </p>
  1228. <p>
  1229. <p>AuthType describes how to authenticate to the Azure Keyvault
  1230. Only one of the following auth types may be specified.
  1231. If none of the following auth type is specified, the default one
  1232. is ServicePrincipal.</p>
  1233. </p>
  1234. <table>
  1235. <thead>
  1236. <tr>
  1237. <th>Value</th>
  1238. <th>Description</th>
  1239. </tr>
  1240. </thead>
  1241. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1242. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1243. </td>
  1244. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1245. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1246. </td>
  1247. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1248. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1249. </td>
  1250. </tr></tbody>
  1251. </table>
  1252. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1253. (<code>string</code> alias)</p></h3>
  1254. <p>
  1255. (<em>Appears on:</em>
  1256. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1257. </p>
  1258. <p>
  1259. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1260. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1261. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1262. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1263. </p>
  1264. <table>
  1265. <thead>
  1266. <tr>
  1267. <th>Value</th>
  1268. <th>Description</th>
  1269. </tr>
  1270. </thead>
  1271. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1272. <td></td>
  1273. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1274. <td></td>
  1275. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1276. <td></td>
  1277. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1278. <td></td>
  1279. </tr></tbody>
  1280. </table>
  1281. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1282. </h3>
  1283. <p>
  1284. (<em>Appears on:</em>
  1285. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1286. </p>
  1287. <p>
  1288. <p>Configuration used to authenticate with Azure.</p>
  1289. </p>
  1290. <table>
  1291. <thead>
  1292. <tr>
  1293. <th>Field</th>
  1294. <th>Description</th>
  1295. </tr>
  1296. </thead>
  1297. <tbody>
  1298. <tr>
  1299. <td>
  1300. <code>clientId</code></br>
  1301. <em>
  1302. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1303. </em>
  1304. </td>
  1305. <td>
  1306. <em>(Optional)</em>
  1307. <p>The Azure clientId of the service principle used for authentication.</p>
  1308. </td>
  1309. </tr>
  1310. <tr>
  1311. <td>
  1312. <code>clientSecret</code></br>
  1313. <em>
  1314. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1315. </em>
  1316. </td>
  1317. <td>
  1318. <em>(Optional)</em>
  1319. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1320. </td>
  1321. </tr>
  1322. </tbody>
  1323. </table>
  1324. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1325. </h3>
  1326. <p>
  1327. (<em>Appears on:</em>
  1328. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1329. </p>
  1330. <p>
  1331. <p>Configures an store to sync secrets using Azure KV.</p>
  1332. </p>
  1333. <table>
  1334. <thead>
  1335. <tr>
  1336. <th>Field</th>
  1337. <th>Description</th>
  1338. </tr>
  1339. </thead>
  1340. <tbody>
  1341. <tr>
  1342. <td>
  1343. <code>authType</code></br>
  1344. <em>
  1345. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1346. AzureAuthType
  1347. </a>
  1348. </em>
  1349. </td>
  1350. <td>
  1351. <em>(Optional)</em>
  1352. <p>Auth type defines how to authenticate to the keyvault service.
  1353. Valid values are:
  1354. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1355. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1356. </td>
  1357. </tr>
  1358. <tr>
  1359. <td>
  1360. <code>vaultUrl</code></br>
  1361. <em>
  1362. string
  1363. </em>
  1364. </td>
  1365. <td>
  1366. <p>Vault Url from which the secrets to be fetched from.</p>
  1367. </td>
  1368. </tr>
  1369. <tr>
  1370. <td>
  1371. <code>tenantId</code></br>
  1372. <em>
  1373. string
  1374. </em>
  1375. </td>
  1376. <td>
  1377. <em>(Optional)</em>
  1378. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1379. </td>
  1380. </tr>
  1381. <tr>
  1382. <td>
  1383. <code>environmentType</code></br>
  1384. <em>
  1385. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1386. AzureEnvironmentType
  1387. </a>
  1388. </em>
  1389. </td>
  1390. <td>
  1391. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1392. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1393. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1394. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1395. </td>
  1396. </tr>
  1397. <tr>
  1398. <td>
  1399. <code>authSecretRef</code></br>
  1400. <em>
  1401. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1402. AzureKVAuth
  1403. </a>
  1404. </em>
  1405. </td>
  1406. <td>
  1407. <em>(Optional)</em>
  1408. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1409. </td>
  1410. </tr>
  1411. <tr>
  1412. <td>
  1413. <code>serviceAccountRef</code></br>
  1414. <em>
  1415. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1416. </em>
  1417. </td>
  1418. <td>
  1419. <em>(Optional)</em>
  1420. <p>ServiceAccountRef specified the service account
  1421. that should be used when authenticating with WorkloadIdentity.</p>
  1422. </td>
  1423. </tr>
  1424. <tr>
  1425. <td>
  1426. <code>identityId</code></br>
  1427. <em>
  1428. string
  1429. </em>
  1430. </td>
  1431. <td>
  1432. <em>(Optional)</em>
  1433. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1434. </td>
  1435. </tr>
  1436. </tbody>
  1437. </table>
  1438. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  1439. </h3>
  1440. <p>
  1441. (<em>Appears on:</em>
  1442. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  1443. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  1444. </p>
  1445. <p>
  1446. <p>Used to provide custom certificate authority (CA) certificates
  1447. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  1448. that contains a PEM-encoded certificate.</p>
  1449. </p>
  1450. <table>
  1451. <thead>
  1452. <tr>
  1453. <th>Field</th>
  1454. <th>Description</th>
  1455. </tr>
  1456. </thead>
  1457. <tbody>
  1458. <tr>
  1459. <td>
  1460. <code>type</code></br>
  1461. <em>
  1462. <a href="#external-secrets.io/v1beta1.CAProviderType">
  1463. CAProviderType
  1464. </a>
  1465. </em>
  1466. </td>
  1467. <td>
  1468. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1469. </td>
  1470. </tr>
  1471. <tr>
  1472. <td>
  1473. <code>name</code></br>
  1474. <em>
  1475. string
  1476. </em>
  1477. </td>
  1478. <td>
  1479. <p>The name of the object located at the provider type.</p>
  1480. </td>
  1481. </tr>
  1482. <tr>
  1483. <td>
  1484. <code>key</code></br>
  1485. <em>
  1486. string
  1487. </em>
  1488. </td>
  1489. <td>
  1490. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  1491. </td>
  1492. </tr>
  1493. <tr>
  1494. <td>
  1495. <code>namespace</code></br>
  1496. <em>
  1497. string
  1498. </em>
  1499. </td>
  1500. <td>
  1501. <em>(Optional)</em>
  1502. <p>The namespace the Provider type is in.
  1503. Can only be defined when used in a ClusterSecretStore.</p>
  1504. </td>
  1505. </tr>
  1506. </tbody>
  1507. </table>
  1508. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  1509. (<code>string</code> alias)</p></h3>
  1510. <p>
  1511. (<em>Appears on:</em>
  1512. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  1513. </p>
  1514. <p>
  1515. </p>
  1516. <table>
  1517. <thead>
  1518. <tr>
  1519. <th>Value</th>
  1520. <th>Description</th>
  1521. </tr>
  1522. </thead>
  1523. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  1524. <td></td>
  1525. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  1526. <td></td>
  1527. </tr></tbody>
  1528. </table>
  1529. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  1530. </h3>
  1531. <p>
  1532. (<em>Appears on:</em>
  1533. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  1534. </p>
  1535. <p>
  1536. </p>
  1537. <table>
  1538. <thead>
  1539. <tr>
  1540. <th>Field</th>
  1541. <th>Description</th>
  1542. </tr>
  1543. </thead>
  1544. <tbody>
  1545. <tr>
  1546. <td>
  1547. <code>clientCert</code></br>
  1548. <em>
  1549. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1550. </em>
  1551. </td>
  1552. <td>
  1553. </td>
  1554. </tr>
  1555. <tr>
  1556. <td>
  1557. <code>clientKey</code></br>
  1558. <em>
  1559. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1560. </em>
  1561. </td>
  1562. <td>
  1563. </td>
  1564. </tr>
  1565. </tbody>
  1566. </table>
  1567. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  1568. </h3>
  1569. <p>
  1570. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  1571. </p>
  1572. <table>
  1573. <thead>
  1574. <tr>
  1575. <th>Field</th>
  1576. <th>Description</th>
  1577. </tr>
  1578. </thead>
  1579. <tbody>
  1580. <tr>
  1581. <td>
  1582. <code>metadata</code></br>
  1583. <em>
  1584. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1585. Kubernetes meta/v1.ObjectMeta
  1586. </a>
  1587. </em>
  1588. </td>
  1589. <td>
  1590. Refer to the Kubernetes API documentation for the fields of the
  1591. <code>metadata</code> field.
  1592. </td>
  1593. </tr>
  1594. <tr>
  1595. <td>
  1596. <code>spec</code></br>
  1597. <em>
  1598. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  1599. ClusterExternalSecretSpec
  1600. </a>
  1601. </em>
  1602. </td>
  1603. <td>
  1604. <br/>
  1605. <br/>
  1606. <table>
  1607. <tr>
  1608. <td>
  1609. <code>externalSecretSpec</code></br>
  1610. <em>
  1611. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1612. ExternalSecretSpec
  1613. </a>
  1614. </em>
  1615. </td>
  1616. <td>
  1617. <p>The spec for the ExternalSecrets to be created</p>
  1618. </td>
  1619. </tr>
  1620. <tr>
  1621. <td>
  1622. <code>externalSecretName</code></br>
  1623. <em>
  1624. string
  1625. </em>
  1626. </td>
  1627. <td>
  1628. <em>(Optional)</em>
  1629. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1630. </td>
  1631. </tr>
  1632. <tr>
  1633. <td>
  1634. <code>namespaceSelector</code></br>
  1635. <em>
  1636. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1637. Kubernetes meta/v1.LabelSelector
  1638. </a>
  1639. </em>
  1640. </td>
  1641. <td>
  1642. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1643. </td>
  1644. </tr>
  1645. <tr>
  1646. <td>
  1647. <code>refreshTime</code></br>
  1648. <em>
  1649. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1650. Kubernetes meta/v1.Duration
  1651. </a>
  1652. </em>
  1653. </td>
  1654. <td>
  1655. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1656. </td>
  1657. </tr>
  1658. </table>
  1659. </td>
  1660. </tr>
  1661. <tr>
  1662. <td>
  1663. <code>status</code></br>
  1664. <em>
  1665. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  1666. ClusterExternalSecretStatus
  1667. </a>
  1668. </em>
  1669. </td>
  1670. <td>
  1671. </td>
  1672. </tr>
  1673. </tbody>
  1674. </table>
  1675. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  1676. (<code>string</code> alias)</p></h3>
  1677. <p>
  1678. (<em>Appears on:</em>
  1679. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  1680. </p>
  1681. <p>
  1682. </p>
  1683. <table>
  1684. <thead>
  1685. <tr>
  1686. <th>Value</th>
  1687. <th>Description</th>
  1688. </tr>
  1689. </thead>
  1690. <tbody><tr><td><p>&#34;NotReady&#34;</p></td>
  1691. <td></td>
  1692. </tr><tr><td><p>&#34;PartiallyReady&#34;</p></td>
  1693. <td></td>
  1694. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  1695. <td></td>
  1696. </tr></tbody>
  1697. </table>
  1698. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  1699. </h3>
  1700. <p>
  1701. (<em>Appears on:</em>
  1702. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1703. </p>
  1704. <p>
  1705. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  1706. </p>
  1707. <table>
  1708. <thead>
  1709. <tr>
  1710. <th>Field</th>
  1711. <th>Description</th>
  1712. </tr>
  1713. </thead>
  1714. <tbody>
  1715. <tr>
  1716. <td>
  1717. <code>namespace</code></br>
  1718. <em>
  1719. string
  1720. </em>
  1721. </td>
  1722. <td>
  1723. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td>
  1728. <code>reason</code></br>
  1729. <em>
  1730. string
  1731. </em>
  1732. </td>
  1733. <td>
  1734. <em>(Optional)</em>
  1735. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  1736. </td>
  1737. </tr>
  1738. </tbody>
  1739. </table>
  1740. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  1741. </h3>
  1742. <p>
  1743. (<em>Appears on:</em>
  1744. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1745. </p>
  1746. <p>
  1747. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  1748. </p>
  1749. <table>
  1750. <thead>
  1751. <tr>
  1752. <th>Field</th>
  1753. <th>Description</th>
  1754. </tr>
  1755. </thead>
  1756. <tbody>
  1757. <tr>
  1758. <td>
  1759. <code>externalSecretSpec</code></br>
  1760. <em>
  1761. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1762. ExternalSecretSpec
  1763. </a>
  1764. </em>
  1765. </td>
  1766. <td>
  1767. <p>The spec for the ExternalSecrets to be created</p>
  1768. </td>
  1769. </tr>
  1770. <tr>
  1771. <td>
  1772. <code>externalSecretName</code></br>
  1773. <em>
  1774. string
  1775. </em>
  1776. </td>
  1777. <td>
  1778. <em>(Optional)</em>
  1779. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1780. </td>
  1781. </tr>
  1782. <tr>
  1783. <td>
  1784. <code>namespaceSelector</code></br>
  1785. <em>
  1786. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1787. Kubernetes meta/v1.LabelSelector
  1788. </a>
  1789. </em>
  1790. </td>
  1791. <td>
  1792. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1793. </td>
  1794. </tr>
  1795. <tr>
  1796. <td>
  1797. <code>refreshTime</code></br>
  1798. <em>
  1799. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1800. Kubernetes meta/v1.Duration
  1801. </a>
  1802. </em>
  1803. </td>
  1804. <td>
  1805. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1806. </td>
  1807. </tr>
  1808. </tbody>
  1809. </table>
  1810. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  1811. </h3>
  1812. <p>
  1813. (<em>Appears on:</em>
  1814. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1815. </p>
  1816. <p>
  1817. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  1818. </p>
  1819. <table>
  1820. <thead>
  1821. <tr>
  1822. <th>Field</th>
  1823. <th>Description</th>
  1824. </tr>
  1825. </thead>
  1826. <tbody>
  1827. <tr>
  1828. <td>
  1829. <code>failedNamespaces</code></br>
  1830. <em>
  1831. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  1832. []ClusterExternalSecretNamespaceFailure
  1833. </a>
  1834. </em>
  1835. </td>
  1836. <td>
  1837. <em>(Optional)</em>
  1838. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  1839. </td>
  1840. </tr>
  1841. <tr>
  1842. <td>
  1843. <code>provisionedNamespaces</code></br>
  1844. <em>
  1845. []string
  1846. </em>
  1847. </td>
  1848. <td>
  1849. <em>(Optional)</em>
  1850. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  1851. </td>
  1852. </tr>
  1853. <tr>
  1854. <td>
  1855. <code>conditions</code></br>
  1856. <em>
  1857. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  1858. []ClusterExternalSecretStatusCondition
  1859. </a>
  1860. </em>
  1861. </td>
  1862. <td>
  1863. <em>(Optional)</em>
  1864. </td>
  1865. </tr>
  1866. </tbody>
  1867. </table>
  1868. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  1869. </h3>
  1870. <p>
  1871. (<em>Appears on:</em>
  1872. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1873. </p>
  1874. <p>
  1875. </p>
  1876. <table>
  1877. <thead>
  1878. <tr>
  1879. <th>Field</th>
  1880. <th>Description</th>
  1881. </tr>
  1882. </thead>
  1883. <tbody>
  1884. <tr>
  1885. <td>
  1886. <code>type</code></br>
  1887. <em>
  1888. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  1889. ClusterExternalSecretConditionType
  1890. </a>
  1891. </em>
  1892. </td>
  1893. <td>
  1894. </td>
  1895. </tr>
  1896. <tr>
  1897. <td>
  1898. <code>status</code></br>
  1899. <em>
  1900. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  1901. Kubernetes core/v1.ConditionStatus
  1902. </a>
  1903. </em>
  1904. </td>
  1905. <td>
  1906. </td>
  1907. </tr>
  1908. <tr>
  1909. <td>
  1910. <code>message</code></br>
  1911. <em>
  1912. string
  1913. </em>
  1914. </td>
  1915. <td>
  1916. <em>(Optional)</em>
  1917. </td>
  1918. </tr>
  1919. </tbody>
  1920. </table>
  1921. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  1922. </h3>
  1923. <p>
  1924. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  1925. </p>
  1926. <table>
  1927. <thead>
  1928. <tr>
  1929. <th>Field</th>
  1930. <th>Description</th>
  1931. </tr>
  1932. </thead>
  1933. <tbody>
  1934. <tr>
  1935. <td>
  1936. <code>metadata</code></br>
  1937. <em>
  1938. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1939. Kubernetes meta/v1.ObjectMeta
  1940. </a>
  1941. </em>
  1942. </td>
  1943. <td>
  1944. Refer to the Kubernetes API documentation for the fields of the
  1945. <code>metadata</code> field.
  1946. </td>
  1947. </tr>
  1948. <tr>
  1949. <td>
  1950. <code>spec</code></br>
  1951. <em>
  1952. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  1953. SecretStoreSpec
  1954. </a>
  1955. </em>
  1956. </td>
  1957. <td>
  1958. <br/>
  1959. <br/>
  1960. <table>
  1961. <tr>
  1962. <td>
  1963. <code>controller</code></br>
  1964. <em>
  1965. string
  1966. </em>
  1967. </td>
  1968. <td>
  1969. <em>(Optional)</em>
  1970. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  1971. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  1972. </td>
  1973. </tr>
  1974. <tr>
  1975. <td>
  1976. <code>provider</code></br>
  1977. <em>
  1978. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  1979. SecretStoreProvider
  1980. </a>
  1981. </em>
  1982. </td>
  1983. <td>
  1984. <p>Used to configure the provider. Only one provider may be set</p>
  1985. </td>
  1986. </tr>
  1987. <tr>
  1988. <td>
  1989. <code>retrySettings</code></br>
  1990. <em>
  1991. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  1992. SecretStoreRetrySettings
  1993. </a>
  1994. </em>
  1995. </td>
  1996. <td>
  1997. <em>(Optional)</em>
  1998. <p>Used to configure http retries if failed</p>
  1999. </td>
  2000. </tr>
  2001. <tr>
  2002. <td>
  2003. <code>refreshInterval</code></br>
  2004. <em>
  2005. int
  2006. </em>
  2007. </td>
  2008. <td>
  2009. <em>(Optional)</em>
  2010. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2011. </td>
  2012. </tr>
  2013. </table>
  2014. </td>
  2015. </tr>
  2016. <tr>
  2017. <td>
  2018. <code>status</code></br>
  2019. <em>
  2020. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2021. SecretStoreStatus
  2022. </a>
  2023. </em>
  2024. </td>
  2025. <td>
  2026. </td>
  2027. </tr>
  2028. </tbody>
  2029. </table>
  2030. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  2031. </h3>
  2032. <p>
  2033. (<em>Appears on:</em>
  2034. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  2035. </p>
  2036. <p>
  2037. </p>
  2038. <table>
  2039. <thead>
  2040. <tr>
  2041. <th>Field</th>
  2042. <th>Description</th>
  2043. </tr>
  2044. </thead>
  2045. <tbody>
  2046. <tr>
  2047. <td>
  2048. <code>secretRef</code></br>
  2049. <em>
  2050. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  2051. DopplerAuthSecretRef
  2052. </a>
  2053. </em>
  2054. </td>
  2055. <td>
  2056. </td>
  2057. </tr>
  2058. </tbody>
  2059. </table>
  2060. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  2061. </h3>
  2062. <p>
  2063. (<em>Appears on:</em>
  2064. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  2065. </p>
  2066. <p>
  2067. </p>
  2068. <table>
  2069. <thead>
  2070. <tr>
  2071. <th>Field</th>
  2072. <th>Description</th>
  2073. </tr>
  2074. </thead>
  2075. <tbody>
  2076. <tr>
  2077. <td>
  2078. <code>dopplerToken</code></br>
  2079. <em>
  2080. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2081. </em>
  2082. </td>
  2083. <td>
  2084. <p>The DopplerToken is used for authentication.
  2085. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  2086. The Key attribute defaults to dopplerToken if not specified.</p>
  2087. </td>
  2088. </tr>
  2089. </tbody>
  2090. </table>
  2091. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  2092. </h3>
  2093. <p>
  2094. (<em>Appears on:</em>
  2095. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2096. </p>
  2097. <p>
  2098. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  2099. Project and Config are required if not using a Service Token.</p>
  2100. </p>
  2101. <table>
  2102. <thead>
  2103. <tr>
  2104. <th>Field</th>
  2105. <th>Description</th>
  2106. </tr>
  2107. </thead>
  2108. <tbody>
  2109. <tr>
  2110. <td>
  2111. <code>auth</code></br>
  2112. <em>
  2113. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  2114. DopplerAuth
  2115. </a>
  2116. </em>
  2117. </td>
  2118. <td>
  2119. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  2120. </td>
  2121. </tr>
  2122. <tr>
  2123. <td>
  2124. <code>project</code></br>
  2125. <em>
  2126. string
  2127. </em>
  2128. </td>
  2129. <td>
  2130. <em>(Optional)</em>
  2131. <p>Doppler project (required if not using a Service Token)</p>
  2132. </td>
  2133. </tr>
  2134. <tr>
  2135. <td>
  2136. <code>config</code></br>
  2137. <em>
  2138. string
  2139. </em>
  2140. </td>
  2141. <td>
  2142. <em>(Optional)</em>
  2143. <p>Doppler config (required if not using a Service Token)</p>
  2144. </td>
  2145. </tr>
  2146. <tr>
  2147. <td>
  2148. <code>nameTransformer</code></br>
  2149. <em>
  2150. string
  2151. </em>
  2152. </td>
  2153. <td>
  2154. <em>(Optional)</em>
  2155. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  2156. </td>
  2157. </tr>
  2158. <tr>
  2159. <td>
  2160. <code>format</code></br>
  2161. <em>
  2162. string
  2163. </em>
  2164. </td>
  2165. <td>
  2166. <em>(Optional)</em>
  2167. <p>Format enables the downloading of secrets as a file (string)</p>
  2168. </td>
  2169. </tr>
  2170. </tbody>
  2171. </table>
  2172. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  2173. </h3>
  2174. <p>
  2175. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  2176. </p>
  2177. <table>
  2178. <thead>
  2179. <tr>
  2180. <th>Field</th>
  2181. <th>Description</th>
  2182. </tr>
  2183. </thead>
  2184. <tbody>
  2185. <tr>
  2186. <td>
  2187. <code>metadata</code></br>
  2188. <em>
  2189. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2190. Kubernetes meta/v1.ObjectMeta
  2191. </a>
  2192. </em>
  2193. </td>
  2194. <td>
  2195. Refer to the Kubernetes API documentation for the fields of the
  2196. <code>metadata</code> field.
  2197. </td>
  2198. </tr>
  2199. <tr>
  2200. <td>
  2201. <code>spec</code></br>
  2202. <em>
  2203. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2204. ExternalSecretSpec
  2205. </a>
  2206. </em>
  2207. </td>
  2208. <td>
  2209. <br/>
  2210. <br/>
  2211. <table>
  2212. <tr>
  2213. <td>
  2214. <code>secretStoreRef</code></br>
  2215. <em>
  2216. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  2217. SecretStoreRef
  2218. </a>
  2219. </em>
  2220. </td>
  2221. <td>
  2222. </td>
  2223. </tr>
  2224. <tr>
  2225. <td>
  2226. <code>target</code></br>
  2227. <em>
  2228. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  2229. ExternalSecretTarget
  2230. </a>
  2231. </em>
  2232. </td>
  2233. <td>
  2234. <em>(Optional)</em>
  2235. </td>
  2236. </tr>
  2237. <tr>
  2238. <td>
  2239. <code>refreshInterval</code></br>
  2240. <em>
  2241. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2242. Kubernetes meta/v1.Duration
  2243. </a>
  2244. </em>
  2245. </td>
  2246. <td>
  2247. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2248. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  2249. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2250. </td>
  2251. </tr>
  2252. <tr>
  2253. <td>
  2254. <code>data</code></br>
  2255. <em>
  2256. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2257. []ExternalSecretData
  2258. </a>
  2259. </em>
  2260. </td>
  2261. <td>
  2262. <em>(Optional)</em>
  2263. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2264. </td>
  2265. </tr>
  2266. <tr>
  2267. <td>
  2268. <code>dataFrom</code></br>
  2269. <em>
  2270. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2271. []ExternalSecretDataFromRemoteRef
  2272. </a>
  2273. </em>
  2274. </td>
  2275. <td>
  2276. <em>(Optional)</em>
  2277. <p>DataFrom is used to fetch all properties from a specific Provider data
  2278. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2279. </td>
  2280. </tr>
  2281. </table>
  2282. </td>
  2283. </tr>
  2284. <tr>
  2285. <td>
  2286. <code>status</code></br>
  2287. <em>
  2288. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  2289. ExternalSecretStatus
  2290. </a>
  2291. </em>
  2292. </td>
  2293. <td>
  2294. </td>
  2295. </tr>
  2296. </tbody>
  2297. </table>
  2298. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  2299. (<code>string</code> alias)</p></h3>
  2300. <p>
  2301. (<em>Appears on:</em>
  2302. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  2303. </p>
  2304. <p>
  2305. </p>
  2306. <table>
  2307. <thead>
  2308. <tr>
  2309. <th>Value</th>
  2310. <th>Description</th>
  2311. </tr>
  2312. </thead>
  2313. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  2314. <td></td>
  2315. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  2316. <td></td>
  2317. </tr></tbody>
  2318. </table>
  2319. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  2320. (<code>string</code> alias)</p></h3>
  2321. <p>
  2322. (<em>Appears on:</em>
  2323. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2324. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2325. </p>
  2326. <p>
  2327. </p>
  2328. <table>
  2329. <thead>
  2330. <tr>
  2331. <th>Value</th>
  2332. <th>Description</th>
  2333. </tr>
  2334. </thead>
  2335. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  2336. <td></td>
  2337. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  2338. <td></td>
  2339. </tr></tbody>
  2340. </table>
  2341. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  2342. (<code>string</code> alias)</p></h3>
  2343. <p>
  2344. (<em>Appears on:</em>
  2345. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2346. </p>
  2347. <p>
  2348. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  2349. </p>
  2350. <table>
  2351. <thead>
  2352. <tr>
  2353. <th>Value</th>
  2354. <th>Description</th>
  2355. </tr>
  2356. </thead>
  2357. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  2358. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  2359. </td>
  2360. </tr><tr><td><p>&#34;None&#34;</p></td>
  2361. <td><p>None does not create a Secret (future use with injector).</p>
  2362. </td>
  2363. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  2364. <td><p>Orphan creates the Secret and does not set the ownerReference.
  2365. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  2366. </td>
  2367. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  2368. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  2369. </td>
  2370. </tr></tbody>
  2371. </table>
  2372. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  2373. </h3>
  2374. <p>
  2375. (<em>Appears on:</em>
  2376. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2377. </p>
  2378. <p>
  2379. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  2380. </p>
  2381. <table>
  2382. <thead>
  2383. <tr>
  2384. <th>Field</th>
  2385. <th>Description</th>
  2386. </tr>
  2387. </thead>
  2388. <tbody>
  2389. <tr>
  2390. <td>
  2391. <code>secretKey</code></br>
  2392. <em>
  2393. string
  2394. </em>
  2395. </td>
  2396. <td>
  2397. </td>
  2398. </tr>
  2399. <tr>
  2400. <td>
  2401. <code>remoteRef</code></br>
  2402. <em>
  2403. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2404. ExternalSecretDataRemoteRef
  2405. </a>
  2406. </em>
  2407. </td>
  2408. <td>
  2409. </td>
  2410. </tr>
  2411. </tbody>
  2412. </table>
  2413. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  2414. </h3>
  2415. <p>
  2416. (<em>Appears on:</em>
  2417. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2418. </p>
  2419. <p>
  2420. </p>
  2421. <table>
  2422. <thead>
  2423. <tr>
  2424. <th>Field</th>
  2425. <th>Description</th>
  2426. </tr>
  2427. </thead>
  2428. <tbody>
  2429. <tr>
  2430. <td>
  2431. <code>extract</code></br>
  2432. <em>
  2433. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2434. ExternalSecretDataRemoteRef
  2435. </a>
  2436. </em>
  2437. </td>
  2438. <td>
  2439. <em>(Optional)</em>
  2440. <p>Used to extract multiple key/value pairs from one secret</p>
  2441. </td>
  2442. </tr>
  2443. <tr>
  2444. <td>
  2445. <code>find</code></br>
  2446. <em>
  2447. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  2448. ExternalSecretFind
  2449. </a>
  2450. </em>
  2451. </td>
  2452. <td>
  2453. <em>(Optional)</em>
  2454. <p>Used to find secrets based on tags or regular expressions</p>
  2455. </td>
  2456. </tr>
  2457. <tr>
  2458. <td>
  2459. <code>rewrite</code></br>
  2460. <em>
  2461. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  2462. []ExternalSecretRewrite
  2463. </a>
  2464. </em>
  2465. </td>
  2466. <td>
  2467. <em>(Optional)</em>
  2468. <p>Used to rewrite secret Keys after getting them from the secret Provider
  2469. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  2470. </td>
  2471. </tr>
  2472. </tbody>
  2473. </table>
  2474. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  2475. </h3>
  2476. <p>
  2477. (<em>Appears on:</em>
  2478. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  2479. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2480. </p>
  2481. <p>
  2482. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  2483. </p>
  2484. <table>
  2485. <thead>
  2486. <tr>
  2487. <th>Field</th>
  2488. <th>Description</th>
  2489. </tr>
  2490. </thead>
  2491. <tbody>
  2492. <tr>
  2493. <td>
  2494. <code>key</code></br>
  2495. <em>
  2496. string
  2497. </em>
  2498. </td>
  2499. <td>
  2500. <p>Key is the key used in the Provider, mandatory</p>
  2501. </td>
  2502. </tr>
  2503. <tr>
  2504. <td>
  2505. <code>metadataPolicy</code></br>
  2506. <em>
  2507. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  2508. ExternalSecretMetadataPolicy
  2509. </a>
  2510. </em>
  2511. </td>
  2512. <td>
  2513. <em>(Optional)</em>
  2514. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  2515. </td>
  2516. </tr>
  2517. <tr>
  2518. <td>
  2519. <code>property</code></br>
  2520. <em>
  2521. string
  2522. </em>
  2523. </td>
  2524. <td>
  2525. <em>(Optional)</em>
  2526. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  2527. </td>
  2528. </tr>
  2529. <tr>
  2530. <td>
  2531. <code>version</code></br>
  2532. <em>
  2533. string
  2534. </em>
  2535. </td>
  2536. <td>
  2537. <em>(Optional)</em>
  2538. <p>Used to select a specific version of the Provider value, if supported</p>
  2539. </td>
  2540. </tr>
  2541. <tr>
  2542. <td>
  2543. <code>conversionStrategy</code></br>
  2544. <em>
  2545. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2546. ExternalSecretConversionStrategy
  2547. </a>
  2548. </em>
  2549. </td>
  2550. <td>
  2551. <em>(Optional)</em>
  2552. <p>Used to define a conversion Strategy</p>
  2553. </td>
  2554. </tr>
  2555. <tr>
  2556. <td>
  2557. <code>decodingStrategy</code></br>
  2558. <em>
  2559. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2560. ExternalSecretDecodingStrategy
  2561. </a>
  2562. </em>
  2563. </td>
  2564. <td>
  2565. <em>(Optional)</em>
  2566. <p>Used to define a decoding Strategy</p>
  2567. </td>
  2568. </tr>
  2569. </tbody>
  2570. </table>
  2571. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  2572. (<code>string</code> alias)</p></h3>
  2573. <p>
  2574. (<em>Appears on:</em>
  2575. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2576. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2577. </p>
  2578. <p>
  2579. </p>
  2580. <table>
  2581. <thead>
  2582. <tr>
  2583. <th>Value</th>
  2584. <th>Description</th>
  2585. </tr>
  2586. </thead>
  2587. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  2588. <td></td>
  2589. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  2590. <td></td>
  2591. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  2592. <td></td>
  2593. </tr><tr><td><p>&#34;None&#34;</p></td>
  2594. <td></td>
  2595. </tr></tbody>
  2596. </table>
  2597. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  2598. (<code>string</code> alias)</p></h3>
  2599. <p>
  2600. (<em>Appears on:</em>
  2601. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2602. </p>
  2603. <p>
  2604. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  2605. </p>
  2606. <table>
  2607. <thead>
  2608. <tr>
  2609. <th>Value</th>
  2610. <th>Description</th>
  2611. </tr>
  2612. </thead>
  2613. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  2614. <td><p>Delete deletes the secret if all provider secrets are deleted.
  2615. If a secret gets deleted on the provider side and is not accessible
  2616. anymore this is not considered an error and the ExternalSecret
  2617. does not go into SecretSyncedError status.</p>
  2618. </td>
  2619. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  2620. <td><p>Merge removes keys in the secret, but not the secret itself.
  2621. If a secret gets deleted on the provider side and is not accessible
  2622. anymore this is not considered an error and the ExternalSecret
  2623. does not go into SecretSyncedError status.</p>
  2624. </td>
  2625. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  2626. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  2627. If a provider secret does not exist the ExternalSecret gets into the
  2628. SecretSyncedError status.</p>
  2629. </td>
  2630. </tr></tbody>
  2631. </table>
  2632. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  2633. </h3>
  2634. <p>
  2635. (<em>Appears on:</em>
  2636. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2637. </p>
  2638. <p>
  2639. </p>
  2640. <table>
  2641. <thead>
  2642. <tr>
  2643. <th>Field</th>
  2644. <th>Description</th>
  2645. </tr>
  2646. </thead>
  2647. <tbody>
  2648. <tr>
  2649. <td>
  2650. <code>path</code></br>
  2651. <em>
  2652. string
  2653. </em>
  2654. </td>
  2655. <td>
  2656. <em>(Optional)</em>
  2657. <p>A root path to start the find operations.</p>
  2658. </td>
  2659. </tr>
  2660. <tr>
  2661. <td>
  2662. <code>name</code></br>
  2663. <em>
  2664. <a href="#external-secrets.io/v1beta1.FindName">
  2665. FindName
  2666. </a>
  2667. </em>
  2668. </td>
  2669. <td>
  2670. <em>(Optional)</em>
  2671. <p>Finds secrets based on the name.</p>
  2672. </td>
  2673. </tr>
  2674. <tr>
  2675. <td>
  2676. <code>tags</code></br>
  2677. <em>
  2678. map[string]string
  2679. </em>
  2680. </td>
  2681. <td>
  2682. <em>(Optional)</em>
  2683. <p>Find secrets based on tags.</p>
  2684. </td>
  2685. </tr>
  2686. <tr>
  2687. <td>
  2688. <code>conversionStrategy</code></br>
  2689. <em>
  2690. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2691. ExternalSecretConversionStrategy
  2692. </a>
  2693. </em>
  2694. </td>
  2695. <td>
  2696. <em>(Optional)</em>
  2697. <p>Used to define a conversion Strategy</p>
  2698. </td>
  2699. </tr>
  2700. <tr>
  2701. <td>
  2702. <code>decodingStrategy</code></br>
  2703. <em>
  2704. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2705. ExternalSecretDecodingStrategy
  2706. </a>
  2707. </em>
  2708. </td>
  2709. <td>
  2710. <em>(Optional)</em>
  2711. <p>Used to define a decoding Strategy</p>
  2712. </td>
  2713. </tr>
  2714. </tbody>
  2715. </table>
  2716. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  2717. (<code>string</code> alias)</p></h3>
  2718. <p>
  2719. (<em>Appears on:</em>
  2720. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  2721. </p>
  2722. <p>
  2723. </p>
  2724. <table>
  2725. <thead>
  2726. <tr>
  2727. <th>Value</th>
  2728. <th>Description</th>
  2729. </tr>
  2730. </thead>
  2731. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  2732. <td></td>
  2733. </tr><tr><td><p>&#34;None&#34;</p></td>
  2734. <td></td>
  2735. </tr></tbody>
  2736. </table>
  2737. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  2738. </h3>
  2739. <p>
  2740. (<em>Appears on:</em>
  2741. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2742. </p>
  2743. <p>
  2744. </p>
  2745. <table>
  2746. <thead>
  2747. <tr>
  2748. <th>Field</th>
  2749. <th>Description</th>
  2750. </tr>
  2751. </thead>
  2752. <tbody>
  2753. <tr>
  2754. <td>
  2755. <code>regexp</code></br>
  2756. <em>
  2757. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  2758. ExternalSecretRewriteRegexp
  2759. </a>
  2760. </em>
  2761. </td>
  2762. <td>
  2763. <em>(Optional)</em>
  2764. <p>Used to rewrite with regular expressions.
  2765. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  2766. </td>
  2767. </tr>
  2768. </tbody>
  2769. </table>
  2770. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  2771. </h3>
  2772. <p>
  2773. (<em>Appears on:</em>
  2774. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  2775. </p>
  2776. <p>
  2777. </p>
  2778. <table>
  2779. <thead>
  2780. <tr>
  2781. <th>Field</th>
  2782. <th>Description</th>
  2783. </tr>
  2784. </thead>
  2785. <tbody>
  2786. <tr>
  2787. <td>
  2788. <code>source</code></br>
  2789. <em>
  2790. string
  2791. </em>
  2792. </td>
  2793. <td>
  2794. <p>Used to define the regular expression of a re.Compiler.</p>
  2795. </td>
  2796. </tr>
  2797. <tr>
  2798. <td>
  2799. <code>target</code></br>
  2800. <em>
  2801. string
  2802. </em>
  2803. </td>
  2804. <td>
  2805. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  2806. </td>
  2807. </tr>
  2808. </tbody>
  2809. </table>
  2810. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  2811. </h3>
  2812. <p>
  2813. (<em>Appears on:</em>
  2814. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  2815. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  2816. </p>
  2817. <p>
  2818. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  2819. </p>
  2820. <table>
  2821. <thead>
  2822. <tr>
  2823. <th>Field</th>
  2824. <th>Description</th>
  2825. </tr>
  2826. </thead>
  2827. <tbody>
  2828. <tr>
  2829. <td>
  2830. <code>secretStoreRef</code></br>
  2831. <em>
  2832. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  2833. SecretStoreRef
  2834. </a>
  2835. </em>
  2836. </td>
  2837. <td>
  2838. </td>
  2839. </tr>
  2840. <tr>
  2841. <td>
  2842. <code>target</code></br>
  2843. <em>
  2844. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  2845. ExternalSecretTarget
  2846. </a>
  2847. </em>
  2848. </td>
  2849. <td>
  2850. <em>(Optional)</em>
  2851. </td>
  2852. </tr>
  2853. <tr>
  2854. <td>
  2855. <code>refreshInterval</code></br>
  2856. <em>
  2857. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2858. Kubernetes meta/v1.Duration
  2859. </a>
  2860. </em>
  2861. </td>
  2862. <td>
  2863. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2864. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  2865. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2866. </td>
  2867. </tr>
  2868. <tr>
  2869. <td>
  2870. <code>data</code></br>
  2871. <em>
  2872. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2873. []ExternalSecretData
  2874. </a>
  2875. </em>
  2876. </td>
  2877. <td>
  2878. <em>(Optional)</em>
  2879. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2880. </td>
  2881. </tr>
  2882. <tr>
  2883. <td>
  2884. <code>dataFrom</code></br>
  2885. <em>
  2886. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2887. []ExternalSecretDataFromRemoteRef
  2888. </a>
  2889. </em>
  2890. </td>
  2891. <td>
  2892. <em>(Optional)</em>
  2893. <p>DataFrom is used to fetch all properties from a specific Provider data
  2894. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2895. </td>
  2896. </tr>
  2897. </tbody>
  2898. </table>
  2899. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  2900. </h3>
  2901. <p>
  2902. (<em>Appears on:</em>
  2903. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  2904. </p>
  2905. <p>
  2906. </p>
  2907. <table>
  2908. <thead>
  2909. <tr>
  2910. <th>Field</th>
  2911. <th>Description</th>
  2912. </tr>
  2913. </thead>
  2914. <tbody>
  2915. <tr>
  2916. <td>
  2917. <code>refreshTime</code></br>
  2918. <em>
  2919. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  2920. Kubernetes meta/v1.Time
  2921. </a>
  2922. </em>
  2923. </td>
  2924. <td>
  2925. <p>refreshTime is the time and date the external secret was fetched and
  2926. the target secret updated</p>
  2927. </td>
  2928. </tr>
  2929. <tr>
  2930. <td>
  2931. <code>syncedResourceVersion</code></br>
  2932. <em>
  2933. string
  2934. </em>
  2935. </td>
  2936. <td>
  2937. <p>SyncedResourceVersion keeps track of the last synced version</p>
  2938. </td>
  2939. </tr>
  2940. <tr>
  2941. <td>
  2942. <code>conditions</code></br>
  2943. <em>
  2944. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  2945. []ExternalSecretStatusCondition
  2946. </a>
  2947. </em>
  2948. </td>
  2949. <td>
  2950. <em>(Optional)</em>
  2951. </td>
  2952. </tr>
  2953. </tbody>
  2954. </table>
  2955. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  2956. </h3>
  2957. <p>
  2958. (<em>Appears on:</em>
  2959. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  2960. </p>
  2961. <p>
  2962. </p>
  2963. <table>
  2964. <thead>
  2965. <tr>
  2966. <th>Field</th>
  2967. <th>Description</th>
  2968. </tr>
  2969. </thead>
  2970. <tbody>
  2971. <tr>
  2972. <td>
  2973. <code>type</code></br>
  2974. <em>
  2975. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  2976. ExternalSecretConditionType
  2977. </a>
  2978. </em>
  2979. </td>
  2980. <td>
  2981. </td>
  2982. </tr>
  2983. <tr>
  2984. <td>
  2985. <code>status</code></br>
  2986. <em>
  2987. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  2988. Kubernetes core/v1.ConditionStatus
  2989. </a>
  2990. </em>
  2991. </td>
  2992. <td>
  2993. </td>
  2994. </tr>
  2995. <tr>
  2996. <td>
  2997. <code>reason</code></br>
  2998. <em>
  2999. string
  3000. </em>
  3001. </td>
  3002. <td>
  3003. <em>(Optional)</em>
  3004. </td>
  3005. </tr>
  3006. <tr>
  3007. <td>
  3008. <code>message</code></br>
  3009. <em>
  3010. string
  3011. </em>
  3012. </td>
  3013. <td>
  3014. <em>(Optional)</em>
  3015. </td>
  3016. </tr>
  3017. <tr>
  3018. <td>
  3019. <code>lastTransitionTime</code></br>
  3020. <em>
  3021. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3022. Kubernetes meta/v1.Time
  3023. </a>
  3024. </em>
  3025. </td>
  3026. <td>
  3027. <em>(Optional)</em>
  3028. </td>
  3029. </tr>
  3030. </tbody>
  3031. </table>
  3032. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  3033. </h3>
  3034. <p>
  3035. (<em>Appears on:</em>
  3036. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3037. </p>
  3038. <p>
  3039. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  3040. There can be only one target per ExternalSecret.</p>
  3041. </p>
  3042. <table>
  3043. <thead>
  3044. <tr>
  3045. <th>Field</th>
  3046. <th>Description</th>
  3047. </tr>
  3048. </thead>
  3049. <tbody>
  3050. <tr>
  3051. <td>
  3052. <code>name</code></br>
  3053. <em>
  3054. string
  3055. </em>
  3056. </td>
  3057. <td>
  3058. <em>(Optional)</em>
  3059. <p>Name defines the name of the Secret resource to be managed
  3060. This field is immutable
  3061. Defaults to the .metadata.name of the ExternalSecret resource</p>
  3062. </td>
  3063. </tr>
  3064. <tr>
  3065. <td>
  3066. <code>creationPolicy</code></br>
  3067. <em>
  3068. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  3069. ExternalSecretCreationPolicy
  3070. </a>
  3071. </em>
  3072. </td>
  3073. <td>
  3074. <em>(Optional)</em>
  3075. <p>CreationPolicy defines rules on how to create the resulting Secret
  3076. Defaults to &lsquo;Owner&rsquo;</p>
  3077. </td>
  3078. </tr>
  3079. <tr>
  3080. <td>
  3081. <code>deletionPolicy</code></br>
  3082. <em>
  3083. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  3084. ExternalSecretDeletionPolicy
  3085. </a>
  3086. </em>
  3087. </td>
  3088. <td>
  3089. <em>(Optional)</em>
  3090. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  3091. Defaults to &lsquo;Retain&rsquo;</p>
  3092. </td>
  3093. </tr>
  3094. <tr>
  3095. <td>
  3096. <code>template</code></br>
  3097. <em>
  3098. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  3099. ExternalSecretTemplate
  3100. </a>
  3101. </em>
  3102. </td>
  3103. <td>
  3104. <em>(Optional)</em>
  3105. <p>Template defines a blueprint for the created Secret resource.</p>
  3106. </td>
  3107. </tr>
  3108. <tr>
  3109. <td>
  3110. <code>immutable</code></br>
  3111. <em>
  3112. bool
  3113. </em>
  3114. </td>
  3115. <td>
  3116. <em>(Optional)</em>
  3117. <p>Immutable defines if the final secret will be immutable</p>
  3118. </td>
  3119. </tr>
  3120. </tbody>
  3121. </table>
  3122. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  3123. </h3>
  3124. <p>
  3125. (<em>Appears on:</em>
  3126. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3127. </p>
  3128. <p>
  3129. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  3130. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  3131. </p>
  3132. <table>
  3133. <thead>
  3134. <tr>
  3135. <th>Field</th>
  3136. <th>Description</th>
  3137. </tr>
  3138. </thead>
  3139. <tbody>
  3140. <tr>
  3141. <td>
  3142. <code>type</code></br>
  3143. <em>
  3144. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  3145. Kubernetes core/v1.SecretType
  3146. </a>
  3147. </em>
  3148. </td>
  3149. <td>
  3150. <em>(Optional)</em>
  3151. </td>
  3152. </tr>
  3153. <tr>
  3154. <td>
  3155. <code>engineVersion</code></br>
  3156. <em>
  3157. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  3158. TemplateEngineVersion
  3159. </a>
  3160. </em>
  3161. </td>
  3162. <td>
  3163. </td>
  3164. </tr>
  3165. <tr>
  3166. <td>
  3167. <code>metadata</code></br>
  3168. <em>
  3169. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  3170. ExternalSecretTemplateMetadata
  3171. </a>
  3172. </em>
  3173. </td>
  3174. <td>
  3175. <em>(Optional)</em>
  3176. </td>
  3177. </tr>
  3178. <tr>
  3179. <td>
  3180. <code>data</code></br>
  3181. <em>
  3182. map[string]string
  3183. </em>
  3184. </td>
  3185. <td>
  3186. <em>(Optional)</em>
  3187. </td>
  3188. </tr>
  3189. <tr>
  3190. <td>
  3191. <code>templateFrom</code></br>
  3192. <em>
  3193. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  3194. []TemplateFrom
  3195. </a>
  3196. </em>
  3197. </td>
  3198. <td>
  3199. <em>(Optional)</em>
  3200. </td>
  3201. </tr>
  3202. </tbody>
  3203. </table>
  3204. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  3205. </h3>
  3206. <p>
  3207. (<em>Appears on:</em>
  3208. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  3209. </p>
  3210. <p>
  3211. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  3212. </p>
  3213. <table>
  3214. <thead>
  3215. <tr>
  3216. <th>Field</th>
  3217. <th>Description</th>
  3218. </tr>
  3219. </thead>
  3220. <tbody>
  3221. <tr>
  3222. <td>
  3223. <code>annotations</code></br>
  3224. <em>
  3225. map[string]string
  3226. </em>
  3227. </td>
  3228. <td>
  3229. <em>(Optional)</em>
  3230. </td>
  3231. </tr>
  3232. <tr>
  3233. <td>
  3234. <code>labels</code></br>
  3235. <em>
  3236. map[string]string
  3237. </em>
  3238. </td>
  3239. <td>
  3240. <em>(Optional)</em>
  3241. </td>
  3242. </tr>
  3243. </tbody>
  3244. </table>
  3245. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  3246. </h3>
  3247. <p>
  3248. </p>
  3249. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  3250. </h3>
  3251. <p>
  3252. (<em>Appears on:</em>
  3253. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3254. </p>
  3255. <p>
  3256. <p>FakeProvider configures a fake provider that returns static values.</p>
  3257. </p>
  3258. <table>
  3259. <thead>
  3260. <tr>
  3261. <th>Field</th>
  3262. <th>Description</th>
  3263. </tr>
  3264. </thead>
  3265. <tbody>
  3266. <tr>
  3267. <td>
  3268. <code>data</code></br>
  3269. <em>
  3270. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  3271. []FakeProviderData
  3272. </a>
  3273. </em>
  3274. </td>
  3275. <td>
  3276. </td>
  3277. </tr>
  3278. </tbody>
  3279. </table>
  3280. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  3281. </h3>
  3282. <p>
  3283. (<em>Appears on:</em>
  3284. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  3285. </p>
  3286. <p>
  3287. </p>
  3288. <table>
  3289. <thead>
  3290. <tr>
  3291. <th>Field</th>
  3292. <th>Description</th>
  3293. </tr>
  3294. </thead>
  3295. <tbody>
  3296. <tr>
  3297. <td>
  3298. <code>key</code></br>
  3299. <em>
  3300. string
  3301. </em>
  3302. </td>
  3303. <td>
  3304. </td>
  3305. </tr>
  3306. <tr>
  3307. <td>
  3308. <code>value</code></br>
  3309. <em>
  3310. string
  3311. </em>
  3312. </td>
  3313. <td>
  3314. </td>
  3315. </tr>
  3316. <tr>
  3317. <td>
  3318. <code>valueMap</code></br>
  3319. <em>
  3320. map[string]string
  3321. </em>
  3322. </td>
  3323. <td>
  3324. </td>
  3325. </tr>
  3326. <tr>
  3327. <td>
  3328. <code>version</code></br>
  3329. <em>
  3330. string
  3331. </em>
  3332. </td>
  3333. <td>
  3334. </td>
  3335. </tr>
  3336. </tbody>
  3337. </table>
  3338. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  3339. </h3>
  3340. <p>
  3341. (<em>Appears on:</em>
  3342. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3343. </p>
  3344. <p>
  3345. </p>
  3346. <table>
  3347. <thead>
  3348. <tr>
  3349. <th>Field</th>
  3350. <th>Description</th>
  3351. </tr>
  3352. </thead>
  3353. <tbody>
  3354. <tr>
  3355. <td>
  3356. <code>regexp</code></br>
  3357. <em>
  3358. string
  3359. </em>
  3360. </td>
  3361. <td>
  3362. <em>(Optional)</em>
  3363. <p>Finds secrets base</p>
  3364. </td>
  3365. </tr>
  3366. </tbody>
  3367. </table>
  3368. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  3369. </h3>
  3370. <p>
  3371. (<em>Appears on:</em>
  3372. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  3373. </p>
  3374. <p>
  3375. </p>
  3376. <table>
  3377. <thead>
  3378. <tr>
  3379. <th>Field</th>
  3380. <th>Description</th>
  3381. </tr>
  3382. </thead>
  3383. <tbody>
  3384. <tr>
  3385. <td>
  3386. <code>secretRef</code></br>
  3387. <em>
  3388. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  3389. GCPSMAuthSecretRef
  3390. </a>
  3391. </em>
  3392. </td>
  3393. <td>
  3394. <em>(Optional)</em>
  3395. </td>
  3396. </tr>
  3397. <tr>
  3398. <td>
  3399. <code>workloadIdentity</code></br>
  3400. <em>
  3401. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  3402. GCPWorkloadIdentity
  3403. </a>
  3404. </em>
  3405. </td>
  3406. <td>
  3407. <em>(Optional)</em>
  3408. </td>
  3409. </tr>
  3410. </tbody>
  3411. </table>
  3412. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  3413. </h3>
  3414. <p>
  3415. (<em>Appears on:</em>
  3416. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3417. </p>
  3418. <p>
  3419. </p>
  3420. <table>
  3421. <thead>
  3422. <tr>
  3423. <th>Field</th>
  3424. <th>Description</th>
  3425. </tr>
  3426. </thead>
  3427. <tbody>
  3428. <tr>
  3429. <td>
  3430. <code>secretAccessKeySecretRef</code></br>
  3431. <em>
  3432. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3433. </em>
  3434. </td>
  3435. <td>
  3436. <em>(Optional)</em>
  3437. <p>The SecretAccessKey is used for authentication</p>
  3438. </td>
  3439. </tr>
  3440. </tbody>
  3441. </table>
  3442. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  3443. </h3>
  3444. <p>
  3445. (<em>Appears on:</em>
  3446. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3447. </p>
  3448. <p>
  3449. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  3450. </p>
  3451. <table>
  3452. <thead>
  3453. <tr>
  3454. <th>Field</th>
  3455. <th>Description</th>
  3456. </tr>
  3457. </thead>
  3458. <tbody>
  3459. <tr>
  3460. <td>
  3461. <code>auth</code></br>
  3462. <em>
  3463. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  3464. GCPSMAuth
  3465. </a>
  3466. </em>
  3467. </td>
  3468. <td>
  3469. <em>(Optional)</em>
  3470. <p>Auth defines the information necessary to authenticate against GCP</p>
  3471. </td>
  3472. </tr>
  3473. <tr>
  3474. <td>
  3475. <code>projectID</code></br>
  3476. <em>
  3477. string
  3478. </em>
  3479. </td>
  3480. <td>
  3481. <p>ProjectID project where secret is located</p>
  3482. </td>
  3483. </tr>
  3484. </tbody>
  3485. </table>
  3486. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  3487. </h3>
  3488. <p>
  3489. (<em>Appears on:</em>
  3490. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3491. </p>
  3492. <p>
  3493. </p>
  3494. <table>
  3495. <thead>
  3496. <tr>
  3497. <th>Field</th>
  3498. <th>Description</th>
  3499. </tr>
  3500. </thead>
  3501. <tbody>
  3502. <tr>
  3503. <td>
  3504. <code>serviceAccountRef</code></br>
  3505. <em>
  3506. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3507. </em>
  3508. </td>
  3509. <td>
  3510. </td>
  3511. </tr>
  3512. <tr>
  3513. <td>
  3514. <code>clusterLocation</code></br>
  3515. <em>
  3516. string
  3517. </em>
  3518. </td>
  3519. <td>
  3520. </td>
  3521. </tr>
  3522. <tr>
  3523. <td>
  3524. <code>clusterName</code></br>
  3525. <em>
  3526. string
  3527. </em>
  3528. </td>
  3529. <td>
  3530. </td>
  3531. </tr>
  3532. <tr>
  3533. <td>
  3534. <code>clusterProjectID</code></br>
  3535. <em>
  3536. string
  3537. </em>
  3538. </td>
  3539. <td>
  3540. </td>
  3541. </tr>
  3542. </tbody>
  3543. </table>
  3544. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  3545. </h3>
  3546. <p>
  3547. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  3548. or a namespaced SecretStore.</p>
  3549. </p>
  3550. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  3551. </h3>
  3552. <p>
  3553. </p>
  3554. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  3555. </h3>
  3556. <p>
  3557. (<em>Appears on:</em>
  3558. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  3559. </p>
  3560. <p>
  3561. </p>
  3562. <table>
  3563. <thead>
  3564. <tr>
  3565. <th>Field</th>
  3566. <th>Description</th>
  3567. </tr>
  3568. </thead>
  3569. <tbody>
  3570. <tr>
  3571. <td>
  3572. <code>SecretRef</code></br>
  3573. <em>
  3574. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  3575. GitlabSecretRef
  3576. </a>
  3577. </em>
  3578. </td>
  3579. <td>
  3580. </td>
  3581. </tr>
  3582. </tbody>
  3583. </table>
  3584. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  3585. </h3>
  3586. <p>
  3587. (<em>Appears on:</em>
  3588. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3589. </p>
  3590. <p>
  3591. <p>Configures a store to sync secrets with a GitLab instance.</p>
  3592. </p>
  3593. <table>
  3594. <thead>
  3595. <tr>
  3596. <th>Field</th>
  3597. <th>Description</th>
  3598. </tr>
  3599. </thead>
  3600. <tbody>
  3601. <tr>
  3602. <td>
  3603. <code>url</code></br>
  3604. <em>
  3605. string
  3606. </em>
  3607. </td>
  3608. <td>
  3609. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  3610. </td>
  3611. </tr>
  3612. <tr>
  3613. <td>
  3614. <code>auth</code></br>
  3615. <em>
  3616. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  3617. GitlabAuth
  3618. </a>
  3619. </em>
  3620. </td>
  3621. <td>
  3622. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  3623. </td>
  3624. </tr>
  3625. <tr>
  3626. <td>
  3627. <code>projectID</code></br>
  3628. <em>
  3629. string
  3630. </em>
  3631. </td>
  3632. <td>
  3633. <p>ProjectID specifies a project where secrets are located.</p>
  3634. </td>
  3635. </tr>
  3636. </tbody>
  3637. </table>
  3638. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  3639. </h3>
  3640. <p>
  3641. (<em>Appears on:</em>
  3642. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  3643. </p>
  3644. <p>
  3645. </p>
  3646. <table>
  3647. <thead>
  3648. <tr>
  3649. <th>Field</th>
  3650. <th>Description</th>
  3651. </tr>
  3652. </thead>
  3653. <tbody>
  3654. <tr>
  3655. <td>
  3656. <code>accessToken</code></br>
  3657. <em>
  3658. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3659. </em>
  3660. </td>
  3661. <td>
  3662. <p>AccessToken is used for authentication.</p>
  3663. </td>
  3664. </tr>
  3665. </tbody>
  3666. </table>
  3667. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  3668. </h3>
  3669. <p>
  3670. (<em>Appears on:</em>
  3671. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  3672. </p>
  3673. <p>
  3674. </p>
  3675. <table>
  3676. <thead>
  3677. <tr>
  3678. <th>Field</th>
  3679. <th>Description</th>
  3680. </tr>
  3681. </thead>
  3682. <tbody>
  3683. <tr>
  3684. <td>
  3685. <code>secretRef</code></br>
  3686. <em>
  3687. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  3688. IBMAuthSecretRef
  3689. </a>
  3690. </em>
  3691. </td>
  3692. <td>
  3693. </td>
  3694. </tr>
  3695. <tr>
  3696. <td>
  3697. <code>containerAuth</code></br>
  3698. <em>
  3699. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  3700. IBMAuthContainerAuth
  3701. </a>
  3702. </em>
  3703. </td>
  3704. <td>
  3705. </td>
  3706. </tr>
  3707. </tbody>
  3708. </table>
  3709. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  3710. </h3>
  3711. <p>
  3712. (<em>Appears on:</em>
  3713. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  3714. </p>
  3715. <p>
  3716. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  3717. </p>
  3718. <table>
  3719. <thead>
  3720. <tr>
  3721. <th>Field</th>
  3722. <th>Description</th>
  3723. </tr>
  3724. </thead>
  3725. <tbody>
  3726. <tr>
  3727. <td>
  3728. <code>profile</code></br>
  3729. <em>
  3730. string
  3731. </em>
  3732. </td>
  3733. <td>
  3734. <p>the IBM Trusted Profile</p>
  3735. </td>
  3736. </tr>
  3737. <tr>
  3738. <td>
  3739. <code>tokenLocation</code></br>
  3740. <em>
  3741. string
  3742. </em>
  3743. </td>
  3744. <td>
  3745. <p>Location the token is mounted on the pod</p>
  3746. </td>
  3747. </tr>
  3748. <tr>
  3749. <td>
  3750. <code>iamEndpoint</code></br>
  3751. <em>
  3752. string
  3753. </em>
  3754. </td>
  3755. <td>
  3756. </td>
  3757. </tr>
  3758. </tbody>
  3759. </table>
  3760. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  3761. </h3>
  3762. <p>
  3763. (<em>Appears on:</em>
  3764. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  3765. </p>
  3766. <p>
  3767. </p>
  3768. <table>
  3769. <thead>
  3770. <tr>
  3771. <th>Field</th>
  3772. <th>Description</th>
  3773. </tr>
  3774. </thead>
  3775. <tbody>
  3776. <tr>
  3777. <td>
  3778. <code>secretApiKeySecretRef</code></br>
  3779. <em>
  3780. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3781. </em>
  3782. </td>
  3783. <td>
  3784. <p>The SecretAccessKey is used for authentication</p>
  3785. </td>
  3786. </tr>
  3787. </tbody>
  3788. </table>
  3789. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  3790. </h3>
  3791. <p>
  3792. (<em>Appears on:</em>
  3793. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3794. </p>
  3795. <p>
  3796. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  3797. backend.</p>
  3798. </p>
  3799. <table>
  3800. <thead>
  3801. <tr>
  3802. <th>Field</th>
  3803. <th>Description</th>
  3804. </tr>
  3805. </thead>
  3806. <tbody>
  3807. <tr>
  3808. <td>
  3809. <code>auth</code></br>
  3810. <em>
  3811. <a href="#external-secrets.io/v1beta1.IBMAuth">
  3812. IBMAuth
  3813. </a>
  3814. </em>
  3815. </td>
  3816. <td>
  3817. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  3818. </td>
  3819. </tr>
  3820. <tr>
  3821. <td>
  3822. <code>serviceUrl</code></br>
  3823. <em>
  3824. string
  3825. </em>
  3826. </td>
  3827. <td>
  3828. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  3829. </td>
  3830. </tr>
  3831. </tbody>
  3832. </table>
  3833. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  3834. </h3>
  3835. <p>
  3836. (<em>Appears on:</em>
  3837. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  3838. </p>
  3839. <p>
  3840. </p>
  3841. <table>
  3842. <thead>
  3843. <tr>
  3844. <th>Field</th>
  3845. <th>Description</th>
  3846. </tr>
  3847. </thead>
  3848. <tbody>
  3849. <tr>
  3850. <td>
  3851. <code>cert</code></br>
  3852. <em>
  3853. <a href="#external-secrets.io/v1beta1.CertAuth">
  3854. CertAuth
  3855. </a>
  3856. </em>
  3857. </td>
  3858. <td>
  3859. <em>(Optional)</em>
  3860. <p>has both clientCert and clientKey as secretKeySelector</p>
  3861. </td>
  3862. </tr>
  3863. <tr>
  3864. <td>
  3865. <code>token</code></br>
  3866. <em>
  3867. <a href="#external-secrets.io/v1beta1.TokenAuth">
  3868. TokenAuth
  3869. </a>
  3870. </em>
  3871. </td>
  3872. <td>
  3873. <em>(Optional)</em>
  3874. <p>use static token to authenticate with</p>
  3875. </td>
  3876. </tr>
  3877. <tr>
  3878. <td>
  3879. <code>serviceAccount</code></br>
  3880. <em>
  3881. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3882. </em>
  3883. </td>
  3884. <td>
  3885. <em>(Optional)</em>
  3886. <p>points to a service account that should be used for authentication</p>
  3887. </td>
  3888. </tr>
  3889. </tbody>
  3890. </table>
  3891. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  3892. </h3>
  3893. <p>
  3894. (<em>Appears on:</em>
  3895. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3896. </p>
  3897. <p>
  3898. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  3899. </p>
  3900. <table>
  3901. <thead>
  3902. <tr>
  3903. <th>Field</th>
  3904. <th>Description</th>
  3905. </tr>
  3906. </thead>
  3907. <tbody>
  3908. <tr>
  3909. <td>
  3910. <code>server</code></br>
  3911. <em>
  3912. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  3913. KubernetesServer
  3914. </a>
  3915. </em>
  3916. </td>
  3917. <td>
  3918. <p>configures the Kubernetes server Address.</p>
  3919. </td>
  3920. </tr>
  3921. <tr>
  3922. <td>
  3923. <code>auth</code></br>
  3924. <em>
  3925. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  3926. KubernetesAuth
  3927. </a>
  3928. </em>
  3929. </td>
  3930. <td>
  3931. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  3932. </td>
  3933. </tr>
  3934. <tr>
  3935. <td>
  3936. <code>remoteNamespace</code></br>
  3937. <em>
  3938. string
  3939. </em>
  3940. </td>
  3941. <td>
  3942. <em>(Optional)</em>
  3943. <p>Remote namespace to fetch the secrets from</p>
  3944. </td>
  3945. </tr>
  3946. </tbody>
  3947. </table>
  3948. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  3949. </h3>
  3950. <p>
  3951. (<em>Appears on:</em>
  3952. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  3953. </p>
  3954. <p>
  3955. </p>
  3956. <table>
  3957. <thead>
  3958. <tr>
  3959. <th>Field</th>
  3960. <th>Description</th>
  3961. </tr>
  3962. </thead>
  3963. <tbody>
  3964. <tr>
  3965. <td>
  3966. <code>url</code></br>
  3967. <em>
  3968. string
  3969. </em>
  3970. </td>
  3971. <td>
  3972. <em>(Optional)</em>
  3973. <p>configures the Kubernetes server Address.</p>
  3974. </td>
  3975. </tr>
  3976. <tr>
  3977. <td>
  3978. <code>caBundle</code></br>
  3979. <em>
  3980. []byte
  3981. </em>
  3982. </td>
  3983. <td>
  3984. <em>(Optional)</em>
  3985. <p>CABundle is a base64-encoded CA certificate</p>
  3986. </td>
  3987. </tr>
  3988. <tr>
  3989. <td>
  3990. <code>caProvider</code></br>
  3991. <em>
  3992. <a href="#external-secrets.io/v1beta1.CAProvider">
  3993. CAProvider
  3994. </a>
  3995. </em>
  3996. </td>
  3997. <td>
  3998. <em>(Optional)</em>
  3999. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  4000. </td>
  4001. </tr>
  4002. </tbody>
  4003. </table>
  4004. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  4005. </h3>
  4006. <p>
  4007. <p>NoSecretError shall be returned when a GetSecret can not find the
  4008. desired secret. This is used for deletionPolicy.</p>
  4009. </p>
  4010. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  4011. </h3>
  4012. <p>
  4013. (<em>Appears on:</em>
  4014. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  4015. </p>
  4016. <p>
  4017. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  4018. </p>
  4019. <table>
  4020. <thead>
  4021. <tr>
  4022. <th>Field</th>
  4023. <th>Description</th>
  4024. </tr>
  4025. </thead>
  4026. <tbody>
  4027. <tr>
  4028. <td>
  4029. <code>secretRef</code></br>
  4030. <em>
  4031. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  4032. OnePasswordAuthSecretRef
  4033. </a>
  4034. </em>
  4035. </td>
  4036. <td>
  4037. </td>
  4038. </tr>
  4039. </tbody>
  4040. </table>
  4041. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  4042. </h3>
  4043. <p>
  4044. (<em>Appears on:</em>
  4045. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  4046. </p>
  4047. <p>
  4048. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  4049. </p>
  4050. <table>
  4051. <thead>
  4052. <tr>
  4053. <th>Field</th>
  4054. <th>Description</th>
  4055. </tr>
  4056. </thead>
  4057. <tbody>
  4058. <tr>
  4059. <td>
  4060. <code>connectTokenSecretRef</code></br>
  4061. <em>
  4062. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4063. </em>
  4064. </td>
  4065. <td>
  4066. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  4067. </td>
  4068. </tr>
  4069. </tbody>
  4070. </table>
  4071. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  4072. </h3>
  4073. <p>
  4074. (<em>Appears on:</em>
  4075. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4076. </p>
  4077. <p>
  4078. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  4079. </p>
  4080. <table>
  4081. <thead>
  4082. <tr>
  4083. <th>Field</th>
  4084. <th>Description</th>
  4085. </tr>
  4086. </thead>
  4087. <tbody>
  4088. <tr>
  4089. <td>
  4090. <code>auth</code></br>
  4091. <em>
  4092. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  4093. OnePasswordAuth
  4094. </a>
  4095. </em>
  4096. </td>
  4097. <td>
  4098. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  4099. </td>
  4100. </tr>
  4101. <tr>
  4102. <td>
  4103. <code>connectHost</code></br>
  4104. <em>
  4105. string
  4106. </em>
  4107. </td>
  4108. <td>
  4109. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  4110. </td>
  4111. </tr>
  4112. <tr>
  4113. <td>
  4114. <code>vaults</code></br>
  4115. <em>
  4116. map[string]int
  4117. </em>
  4118. </td>
  4119. <td>
  4120. <p>Vaults defines which OnePassword vaults to search in which order</p>
  4121. </td>
  4122. </tr>
  4123. </tbody>
  4124. </table>
  4125. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  4126. </h3>
  4127. <p>
  4128. (<em>Appears on:</em>
  4129. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  4130. </p>
  4131. <p>
  4132. </p>
  4133. <table>
  4134. <thead>
  4135. <tr>
  4136. <th>Field</th>
  4137. <th>Description</th>
  4138. </tr>
  4139. </thead>
  4140. <tbody>
  4141. <tr>
  4142. <td>
  4143. <code>tenancy</code></br>
  4144. <em>
  4145. string
  4146. </em>
  4147. </td>
  4148. <td>
  4149. <p>Tenancy is the tenancy OCID where user is located.</p>
  4150. </td>
  4151. </tr>
  4152. <tr>
  4153. <td>
  4154. <code>user</code></br>
  4155. <em>
  4156. string
  4157. </em>
  4158. </td>
  4159. <td>
  4160. <p>User is an access OCID specific to the account.</p>
  4161. </td>
  4162. </tr>
  4163. <tr>
  4164. <td>
  4165. <code>secretRef</code></br>
  4166. <em>
  4167. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  4168. OracleSecretRef
  4169. </a>
  4170. </em>
  4171. </td>
  4172. <td>
  4173. <p>SecretRef to pass through sensitive information.</p>
  4174. </td>
  4175. </tr>
  4176. </tbody>
  4177. </table>
  4178. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  4179. </h3>
  4180. <p>
  4181. (<em>Appears on:</em>
  4182. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4183. </p>
  4184. <p>
  4185. <p>Configures an store to sync secrets using a Oracle Vault
  4186. backend.</p>
  4187. </p>
  4188. <table>
  4189. <thead>
  4190. <tr>
  4191. <th>Field</th>
  4192. <th>Description</th>
  4193. </tr>
  4194. </thead>
  4195. <tbody>
  4196. <tr>
  4197. <td>
  4198. <code>region</code></br>
  4199. <em>
  4200. string
  4201. </em>
  4202. </td>
  4203. <td>
  4204. <p>Region is the region where vault is located.</p>
  4205. </td>
  4206. </tr>
  4207. <tr>
  4208. <td>
  4209. <code>vault</code></br>
  4210. <em>
  4211. string
  4212. </em>
  4213. </td>
  4214. <td>
  4215. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  4216. </td>
  4217. </tr>
  4218. <tr>
  4219. <td>
  4220. <code>auth</code></br>
  4221. <em>
  4222. <a href="#external-secrets.io/v1beta1.OracleAuth">
  4223. OracleAuth
  4224. </a>
  4225. </em>
  4226. </td>
  4227. <td>
  4228. <em>(Optional)</em>
  4229. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  4230. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  4231. </td>
  4232. </tr>
  4233. </tbody>
  4234. </table>
  4235. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  4236. </h3>
  4237. <p>
  4238. (<em>Appears on:</em>
  4239. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  4240. </p>
  4241. <p>
  4242. </p>
  4243. <table>
  4244. <thead>
  4245. <tr>
  4246. <th>Field</th>
  4247. <th>Description</th>
  4248. </tr>
  4249. </thead>
  4250. <tbody>
  4251. <tr>
  4252. <td>
  4253. <code>privatekey</code></br>
  4254. <em>
  4255. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4256. </em>
  4257. </td>
  4258. <td>
  4259. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  4260. </td>
  4261. </tr>
  4262. <tr>
  4263. <td>
  4264. <code>fingerprint</code></br>
  4265. <em>
  4266. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4267. </em>
  4268. </td>
  4269. <td>
  4270. <p>Fingerprint is the fingerprint of the API private key.</p>
  4271. </td>
  4272. </tr>
  4273. </tbody>
  4274. </table>
  4275. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  4276. </h3>
  4277. <p>
  4278. <p>Provider is a common interface for interacting with secret backends.</p>
  4279. </p>
  4280. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  4281. </h3>
  4282. <p>
  4283. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  4284. </p>
  4285. <table>
  4286. <thead>
  4287. <tr>
  4288. <th>Field</th>
  4289. <th>Description</th>
  4290. </tr>
  4291. </thead>
  4292. <tbody>
  4293. <tr>
  4294. <td>
  4295. <code>metadata</code></br>
  4296. <em>
  4297. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  4298. Kubernetes meta/v1.ObjectMeta
  4299. </a>
  4300. </em>
  4301. </td>
  4302. <td>
  4303. Refer to the Kubernetes API documentation for the fields of the
  4304. <code>metadata</code> field.
  4305. </td>
  4306. </tr>
  4307. <tr>
  4308. <td>
  4309. <code>spec</code></br>
  4310. <em>
  4311. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  4312. SecretStoreSpec
  4313. </a>
  4314. </em>
  4315. </td>
  4316. <td>
  4317. <br/>
  4318. <br/>
  4319. <table>
  4320. <tr>
  4321. <td>
  4322. <code>controller</code></br>
  4323. <em>
  4324. string
  4325. </em>
  4326. </td>
  4327. <td>
  4328. <em>(Optional)</em>
  4329. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4330. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4331. </td>
  4332. </tr>
  4333. <tr>
  4334. <td>
  4335. <code>provider</code></br>
  4336. <em>
  4337. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4338. SecretStoreProvider
  4339. </a>
  4340. </em>
  4341. </td>
  4342. <td>
  4343. <p>Used to configure the provider. Only one provider may be set</p>
  4344. </td>
  4345. </tr>
  4346. <tr>
  4347. <td>
  4348. <code>retrySettings</code></br>
  4349. <em>
  4350. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4351. SecretStoreRetrySettings
  4352. </a>
  4353. </em>
  4354. </td>
  4355. <td>
  4356. <em>(Optional)</em>
  4357. <p>Used to configure http retries if failed</p>
  4358. </td>
  4359. </tr>
  4360. <tr>
  4361. <td>
  4362. <code>refreshInterval</code></br>
  4363. <em>
  4364. int
  4365. </em>
  4366. </td>
  4367. <td>
  4368. <em>(Optional)</em>
  4369. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4370. </td>
  4371. </tr>
  4372. </table>
  4373. </td>
  4374. </tr>
  4375. <tr>
  4376. <td>
  4377. <code>status</code></br>
  4378. <em>
  4379. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  4380. SecretStoreStatus
  4381. </a>
  4382. </em>
  4383. </td>
  4384. <td>
  4385. </td>
  4386. </tr>
  4387. </tbody>
  4388. </table>
  4389. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  4390. (<code>string</code> alias)</p></h3>
  4391. <p>
  4392. (<em>Appears on:</em>
  4393. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  4394. </p>
  4395. <p>
  4396. </p>
  4397. <table>
  4398. <thead>
  4399. <tr>
  4400. <th>Value</th>
  4401. <th>Description</th>
  4402. </tr>
  4403. </thead>
  4404. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  4405. <td></td>
  4406. </tr></tbody>
  4407. </table>
  4408. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  4409. </h3>
  4410. <p>
  4411. (<em>Appears on:</em>
  4412. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4413. </p>
  4414. <p>
  4415. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  4416. </p>
  4417. <table>
  4418. <thead>
  4419. <tr>
  4420. <th>Field</th>
  4421. <th>Description</th>
  4422. </tr>
  4423. </thead>
  4424. <tbody>
  4425. <tr>
  4426. <td>
  4427. <code>aws</code></br>
  4428. <em>
  4429. <a href="#external-secrets.io/v1beta1.AWSProvider">
  4430. AWSProvider
  4431. </a>
  4432. </em>
  4433. </td>
  4434. <td>
  4435. <em>(Optional)</em>
  4436. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  4437. </td>
  4438. </tr>
  4439. <tr>
  4440. <td>
  4441. <code>azurekv</code></br>
  4442. <em>
  4443. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  4444. AzureKVProvider
  4445. </a>
  4446. </em>
  4447. </td>
  4448. <td>
  4449. <em>(Optional)</em>
  4450. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  4451. </td>
  4452. </tr>
  4453. <tr>
  4454. <td>
  4455. <code>akeyless</code></br>
  4456. <em>
  4457. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  4458. AkeylessProvider
  4459. </a>
  4460. </em>
  4461. </td>
  4462. <td>
  4463. <em>(Optional)</em>
  4464. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  4465. </td>
  4466. </tr>
  4467. <tr>
  4468. <td>
  4469. <code>vault</code></br>
  4470. <em>
  4471. <a href="#external-secrets.io/v1beta1.VaultProvider">
  4472. VaultProvider
  4473. </a>
  4474. </em>
  4475. </td>
  4476. <td>
  4477. <em>(Optional)</em>
  4478. <p>Vault configures this store to sync secrets using Hashi provider</p>
  4479. </td>
  4480. </tr>
  4481. <tr>
  4482. <td>
  4483. <code>gcpsm</code></br>
  4484. <em>
  4485. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  4486. GCPSMProvider
  4487. </a>
  4488. </em>
  4489. </td>
  4490. <td>
  4491. <em>(Optional)</em>
  4492. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  4493. </td>
  4494. </tr>
  4495. <tr>
  4496. <td>
  4497. <code>oracle</code></br>
  4498. <em>
  4499. <a href="#external-secrets.io/v1beta1.OracleProvider">
  4500. OracleProvider
  4501. </a>
  4502. </em>
  4503. </td>
  4504. <td>
  4505. <em>(Optional)</em>
  4506. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  4507. </td>
  4508. </tr>
  4509. <tr>
  4510. <td>
  4511. <code>ibm</code></br>
  4512. <em>
  4513. <a href="#external-secrets.io/v1beta1.IBMProvider">
  4514. IBMProvider
  4515. </a>
  4516. </em>
  4517. </td>
  4518. <td>
  4519. <em>(Optional)</em>
  4520. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  4521. </td>
  4522. </tr>
  4523. <tr>
  4524. <td>
  4525. <code>yandexcertificatemanager</code></br>
  4526. <em>
  4527. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  4528. YandexCertificateManagerProvider
  4529. </a>
  4530. </em>
  4531. </td>
  4532. <td>
  4533. <em>(Optional)</em>
  4534. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  4535. </td>
  4536. </tr>
  4537. <tr>
  4538. <td>
  4539. <code>yandexlockbox</code></br>
  4540. <em>
  4541. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  4542. YandexLockboxProvider
  4543. </a>
  4544. </em>
  4545. </td>
  4546. <td>
  4547. <em>(Optional)</em>
  4548. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  4549. </td>
  4550. </tr>
  4551. <tr>
  4552. <td>
  4553. <code>gitlab</code></br>
  4554. <em>
  4555. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  4556. GitlabProvider
  4557. </a>
  4558. </em>
  4559. </td>
  4560. <td>
  4561. <em>(Optional)</em>
  4562. <p>Gitlab configures this store to sync secrets using Gitlab Variables provider</p>
  4563. </td>
  4564. </tr>
  4565. <tr>
  4566. <td>
  4567. <code>alibaba</code></br>
  4568. <em>
  4569. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  4570. AlibabaProvider
  4571. </a>
  4572. </em>
  4573. </td>
  4574. <td>
  4575. <em>(Optional)</em>
  4576. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  4577. </td>
  4578. </tr>
  4579. <tr>
  4580. <td>
  4581. <code>onepassword</code></br>
  4582. <em>
  4583. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  4584. OnePasswordProvider
  4585. </a>
  4586. </em>
  4587. </td>
  4588. <td>
  4589. <em>(Optional)</em>
  4590. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  4591. </td>
  4592. </tr>
  4593. <tr>
  4594. <td>
  4595. <code>webhook</code></br>
  4596. <em>
  4597. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  4598. WebhookProvider
  4599. </a>
  4600. </em>
  4601. </td>
  4602. <td>
  4603. <em>(Optional)</em>
  4604. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  4605. </td>
  4606. </tr>
  4607. <tr>
  4608. <td>
  4609. <code>kubernetes</code></br>
  4610. <em>
  4611. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  4612. KubernetesProvider
  4613. </a>
  4614. </em>
  4615. </td>
  4616. <td>
  4617. <em>(Optional)</em>
  4618. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  4619. </td>
  4620. </tr>
  4621. <tr>
  4622. <td>
  4623. <code>fake</code></br>
  4624. <em>
  4625. <a href="#external-secrets.io/v1beta1.FakeProvider">
  4626. FakeProvider
  4627. </a>
  4628. </em>
  4629. </td>
  4630. <td>
  4631. <em>(Optional)</em>
  4632. <p>Fake configures a store with static key/value pairs</p>
  4633. </td>
  4634. </tr>
  4635. <tr>
  4636. <td>
  4637. <code>senhasegura</code></br>
  4638. <em>
  4639. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  4640. SenhaseguraProvider
  4641. </a>
  4642. </em>
  4643. </td>
  4644. <td>
  4645. <em>(Optional)</em>
  4646. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  4647. </td>
  4648. </tr>
  4649. <tr>
  4650. <td>
  4651. <code>doppler</code></br>
  4652. <em>
  4653. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  4654. DopplerProvider
  4655. </a>
  4656. </em>
  4657. </td>
  4658. <td>
  4659. <em>(Optional)</em>
  4660. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  4661. </td>
  4662. </tr>
  4663. </tbody>
  4664. </table>
  4665. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  4666. </h3>
  4667. <p>
  4668. (<em>Appears on:</em>
  4669. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4670. </p>
  4671. <p>
  4672. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  4673. </p>
  4674. <table>
  4675. <thead>
  4676. <tr>
  4677. <th>Field</th>
  4678. <th>Description</th>
  4679. </tr>
  4680. </thead>
  4681. <tbody>
  4682. <tr>
  4683. <td>
  4684. <code>name</code></br>
  4685. <em>
  4686. string
  4687. </em>
  4688. </td>
  4689. <td>
  4690. <p>Name of the SecretStore resource</p>
  4691. </td>
  4692. </tr>
  4693. <tr>
  4694. <td>
  4695. <code>kind</code></br>
  4696. <em>
  4697. string
  4698. </em>
  4699. </td>
  4700. <td>
  4701. <em>(Optional)</em>
  4702. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  4703. Defaults to <code>SecretStore</code></p>
  4704. </td>
  4705. </tr>
  4706. </tbody>
  4707. </table>
  4708. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  4709. </h3>
  4710. <p>
  4711. (<em>Appears on:</em>
  4712. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4713. </p>
  4714. <p>
  4715. </p>
  4716. <table>
  4717. <thead>
  4718. <tr>
  4719. <th>Field</th>
  4720. <th>Description</th>
  4721. </tr>
  4722. </thead>
  4723. <tbody>
  4724. <tr>
  4725. <td>
  4726. <code>maxRetries</code></br>
  4727. <em>
  4728. int32
  4729. </em>
  4730. </td>
  4731. <td>
  4732. </td>
  4733. </tr>
  4734. <tr>
  4735. <td>
  4736. <code>retryInterval</code></br>
  4737. <em>
  4738. string
  4739. </em>
  4740. </td>
  4741. <td>
  4742. </td>
  4743. </tr>
  4744. </tbody>
  4745. </table>
  4746. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  4747. </h3>
  4748. <p>
  4749. (<em>Appears on:</em>
  4750. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  4751. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  4752. </p>
  4753. <p>
  4754. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  4755. </p>
  4756. <table>
  4757. <thead>
  4758. <tr>
  4759. <th>Field</th>
  4760. <th>Description</th>
  4761. </tr>
  4762. </thead>
  4763. <tbody>
  4764. <tr>
  4765. <td>
  4766. <code>controller</code></br>
  4767. <em>
  4768. string
  4769. </em>
  4770. </td>
  4771. <td>
  4772. <em>(Optional)</em>
  4773. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4774. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4775. </td>
  4776. </tr>
  4777. <tr>
  4778. <td>
  4779. <code>provider</code></br>
  4780. <em>
  4781. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4782. SecretStoreProvider
  4783. </a>
  4784. </em>
  4785. </td>
  4786. <td>
  4787. <p>Used to configure the provider. Only one provider may be set</p>
  4788. </td>
  4789. </tr>
  4790. <tr>
  4791. <td>
  4792. <code>retrySettings</code></br>
  4793. <em>
  4794. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4795. SecretStoreRetrySettings
  4796. </a>
  4797. </em>
  4798. </td>
  4799. <td>
  4800. <em>(Optional)</em>
  4801. <p>Used to configure http retries if failed</p>
  4802. </td>
  4803. </tr>
  4804. <tr>
  4805. <td>
  4806. <code>refreshInterval</code></br>
  4807. <em>
  4808. int
  4809. </em>
  4810. </td>
  4811. <td>
  4812. <em>(Optional)</em>
  4813. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4814. </td>
  4815. </tr>
  4816. </tbody>
  4817. </table>
  4818. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  4819. </h3>
  4820. <p>
  4821. (<em>Appears on:</em>
  4822. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  4823. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  4824. </p>
  4825. <p>
  4826. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  4827. </p>
  4828. <table>
  4829. <thead>
  4830. <tr>
  4831. <th>Field</th>
  4832. <th>Description</th>
  4833. </tr>
  4834. </thead>
  4835. <tbody>
  4836. <tr>
  4837. <td>
  4838. <code>conditions</code></br>
  4839. <em>
  4840. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  4841. []SecretStoreStatusCondition
  4842. </a>
  4843. </em>
  4844. </td>
  4845. <td>
  4846. <em>(Optional)</em>
  4847. </td>
  4848. </tr>
  4849. </tbody>
  4850. </table>
  4851. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  4852. </h3>
  4853. <p>
  4854. (<em>Appears on:</em>
  4855. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  4856. </p>
  4857. <p>
  4858. </p>
  4859. <table>
  4860. <thead>
  4861. <tr>
  4862. <th>Field</th>
  4863. <th>Description</th>
  4864. </tr>
  4865. </thead>
  4866. <tbody>
  4867. <tr>
  4868. <td>
  4869. <code>type</code></br>
  4870. <em>
  4871. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  4872. SecretStoreConditionType
  4873. </a>
  4874. </em>
  4875. </td>
  4876. <td>
  4877. </td>
  4878. </tr>
  4879. <tr>
  4880. <td>
  4881. <code>status</code></br>
  4882. <em>
  4883. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  4884. Kubernetes core/v1.ConditionStatus
  4885. </a>
  4886. </em>
  4887. </td>
  4888. <td>
  4889. </td>
  4890. </tr>
  4891. <tr>
  4892. <td>
  4893. <code>reason</code></br>
  4894. <em>
  4895. string
  4896. </em>
  4897. </td>
  4898. <td>
  4899. <em>(Optional)</em>
  4900. </td>
  4901. </tr>
  4902. <tr>
  4903. <td>
  4904. <code>message</code></br>
  4905. <em>
  4906. string
  4907. </em>
  4908. </td>
  4909. <td>
  4910. <em>(Optional)</em>
  4911. </td>
  4912. </tr>
  4913. <tr>
  4914. <td>
  4915. <code>lastTransitionTime</code></br>
  4916. <em>
  4917. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  4918. Kubernetes meta/v1.Time
  4919. </a>
  4920. </em>
  4921. </td>
  4922. <td>
  4923. <em>(Optional)</em>
  4924. </td>
  4925. </tr>
  4926. </tbody>
  4927. </table>
  4928. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  4929. </h3>
  4930. <p>
  4931. <p>SecretsClient provides access to secrets.</p>
  4932. </p>
  4933. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  4934. </h3>
  4935. <p>
  4936. (<em>Appears on:</em>
  4937. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  4938. </p>
  4939. <p>
  4940. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  4941. </p>
  4942. <table>
  4943. <thead>
  4944. <tr>
  4945. <th>Field</th>
  4946. <th>Description</th>
  4947. </tr>
  4948. </thead>
  4949. <tbody>
  4950. <tr>
  4951. <td>
  4952. <code>clientId</code></br>
  4953. <em>
  4954. string
  4955. </em>
  4956. </td>
  4957. <td>
  4958. </td>
  4959. </tr>
  4960. <tr>
  4961. <td>
  4962. <code>clientSecretSecretRef</code></br>
  4963. <em>
  4964. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4965. </em>
  4966. </td>
  4967. <td>
  4968. </td>
  4969. </tr>
  4970. </tbody>
  4971. </table>
  4972. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  4973. (<code>string</code> alias)</p></h3>
  4974. <p>
  4975. (<em>Appears on:</em>
  4976. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  4977. </p>
  4978. <p>
  4979. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  4980. </p>
  4981. <table>
  4982. <thead>
  4983. <tr>
  4984. <th>Value</th>
  4985. <th>Description</th>
  4986. </tr>
  4987. </thead>
  4988. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  4989. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  4990. see: https://senhasegura.com/devops
  4991. </code></pre>
  4992. </td>
  4993. </tr></tbody>
  4994. </table>
  4995. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  4996. </h3>
  4997. <p>
  4998. (<em>Appears on:</em>
  4999. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5000. </p>
  5001. <p>
  5002. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  5003. </p>
  5004. <table>
  5005. <thead>
  5006. <tr>
  5007. <th>Field</th>
  5008. <th>Description</th>
  5009. </tr>
  5010. </thead>
  5011. <tbody>
  5012. <tr>
  5013. <td>
  5014. <code>url</code></br>
  5015. <em>
  5016. string
  5017. </em>
  5018. </td>
  5019. <td>
  5020. <p>URL of senhasegura</p>
  5021. </td>
  5022. </tr>
  5023. <tr>
  5024. <td>
  5025. <code>module</code></br>
  5026. <em>
  5027. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  5028. SenhaseguraModuleType
  5029. </a>
  5030. </em>
  5031. </td>
  5032. <td>
  5033. <p>Module defines which senhasegura module should be used to get secrets</p>
  5034. </td>
  5035. </tr>
  5036. <tr>
  5037. <td>
  5038. <code>auth</code></br>
  5039. <em>
  5040. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  5041. SenhaseguraAuth
  5042. </a>
  5043. </em>
  5044. </td>
  5045. <td>
  5046. <p>Auth defines parameters to authenticate in senhasegura</p>
  5047. </td>
  5048. </tr>
  5049. <tr>
  5050. <td>
  5051. <code>ignoreSslCertificate</code></br>
  5052. <em>
  5053. bool
  5054. </em>
  5055. </td>
  5056. <td>
  5057. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  5058. </td>
  5059. </tr>
  5060. </tbody>
  5061. </table>
  5062. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  5063. (<code>string</code> alias)</p></h3>
  5064. <p>
  5065. (<em>Appears on:</em>
  5066. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5067. </p>
  5068. <p>
  5069. </p>
  5070. <table>
  5071. <thead>
  5072. <tr>
  5073. <th>Value</th>
  5074. <th>Description</th>
  5075. </tr>
  5076. </thead>
  5077. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5078. <td></td>
  5079. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5080. <td></td>
  5081. </tr></tbody>
  5082. </table>
  5083. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  5084. </h3>
  5085. <p>
  5086. (<em>Appears on:</em>
  5087. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5088. </p>
  5089. <p>
  5090. </p>
  5091. <table>
  5092. <thead>
  5093. <tr>
  5094. <th>Field</th>
  5095. <th>Description</th>
  5096. </tr>
  5097. </thead>
  5098. <tbody>
  5099. <tr>
  5100. <td>
  5101. <code>configMap</code></br>
  5102. <em>
  5103. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5104. TemplateRef
  5105. </a>
  5106. </em>
  5107. </td>
  5108. <td>
  5109. </td>
  5110. </tr>
  5111. <tr>
  5112. <td>
  5113. <code>secret</code></br>
  5114. <em>
  5115. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5116. TemplateRef
  5117. </a>
  5118. </em>
  5119. </td>
  5120. <td>
  5121. </td>
  5122. </tr>
  5123. </tbody>
  5124. </table>
  5125. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  5126. </h3>
  5127. <p>
  5128. (<em>Appears on:</em>
  5129. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5130. </p>
  5131. <p>
  5132. </p>
  5133. <table>
  5134. <thead>
  5135. <tr>
  5136. <th>Field</th>
  5137. <th>Description</th>
  5138. </tr>
  5139. </thead>
  5140. <tbody>
  5141. <tr>
  5142. <td>
  5143. <code>name</code></br>
  5144. <em>
  5145. string
  5146. </em>
  5147. </td>
  5148. <td>
  5149. </td>
  5150. </tr>
  5151. <tr>
  5152. <td>
  5153. <code>items</code></br>
  5154. <em>
  5155. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  5156. []TemplateRefItem
  5157. </a>
  5158. </em>
  5159. </td>
  5160. <td>
  5161. </td>
  5162. </tr>
  5163. </tbody>
  5164. </table>
  5165. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  5166. </h3>
  5167. <p>
  5168. (<em>Appears on:</em>
  5169. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  5170. </p>
  5171. <p>
  5172. </p>
  5173. <table>
  5174. <thead>
  5175. <tr>
  5176. <th>Field</th>
  5177. <th>Description</th>
  5178. </tr>
  5179. </thead>
  5180. <tbody>
  5181. <tr>
  5182. <td>
  5183. <code>key</code></br>
  5184. <em>
  5185. string
  5186. </em>
  5187. </td>
  5188. <td>
  5189. </td>
  5190. </tr>
  5191. </tbody>
  5192. </table>
  5193. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  5194. </h3>
  5195. <p>
  5196. (<em>Appears on:</em>
  5197. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  5198. </p>
  5199. <p>
  5200. </p>
  5201. <table>
  5202. <thead>
  5203. <tr>
  5204. <th>Field</th>
  5205. <th>Description</th>
  5206. </tr>
  5207. </thead>
  5208. <tbody>
  5209. <tr>
  5210. <td>
  5211. <code>bearerToken</code></br>
  5212. <em>
  5213. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5214. </em>
  5215. </td>
  5216. <td>
  5217. </td>
  5218. </tr>
  5219. </tbody>
  5220. </table>
  5221. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  5222. (<code>byte</code> alias)</p></h3>
  5223. <p>
  5224. </p>
  5225. <table>
  5226. <thead>
  5227. <tr>
  5228. <th>Value</th>
  5229. <th>Description</th>
  5230. </tr>
  5231. </thead>
  5232. <tbody><tr><td><p>2</p></td>
  5233. <td><p>Error indicates that there is a misconfiguration.</p>
  5234. </td>
  5235. </tr><tr><td><p>0</p></td>
  5236. <td><p>Ready indicates that the client is confgured correctly
  5237. and can be used.</p>
  5238. </td>
  5239. </tr><tr><td><p>1</p></td>
  5240. <td><p>Unknown indicates that the client can be used
  5241. but information is missing and it can not be validated.</p>
  5242. </td>
  5243. </tr></tbody>
  5244. </table>
  5245. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  5246. </h3>
  5247. <p>
  5248. (<em>Appears on:</em>
  5249. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5250. </p>
  5251. <p>
  5252. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  5253. with the role and secret stored in a Kubernetes Secret resource.</p>
  5254. </p>
  5255. <table>
  5256. <thead>
  5257. <tr>
  5258. <th>Field</th>
  5259. <th>Description</th>
  5260. </tr>
  5261. </thead>
  5262. <tbody>
  5263. <tr>
  5264. <td>
  5265. <code>path</code></br>
  5266. <em>
  5267. string
  5268. </em>
  5269. </td>
  5270. <td>
  5271. <p>Path where the App Role authentication backend is mounted
  5272. in Vault, e.g: &ldquo;approle&rdquo;</p>
  5273. </td>
  5274. </tr>
  5275. <tr>
  5276. <td>
  5277. <code>roleId</code></br>
  5278. <em>
  5279. string
  5280. </em>
  5281. </td>
  5282. <td>
  5283. <p>RoleID configured in the App Role authentication backend when setting
  5284. up the authentication backend in Vault.</p>
  5285. </td>
  5286. </tr>
  5287. <tr>
  5288. <td>
  5289. <code>secretRef</code></br>
  5290. <em>
  5291. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5292. </em>
  5293. </td>
  5294. <td>
  5295. <p>Reference to a key in a Secret that contains the App Role secret used
  5296. to authenticate with Vault.
  5297. The <code>key</code> field must be specified and denotes which entry within the Secret
  5298. resource is used as the app role secret.</p>
  5299. </td>
  5300. </tr>
  5301. </tbody>
  5302. </table>
  5303. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  5304. </h3>
  5305. <p>
  5306. (<em>Appears on:</em>
  5307. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5308. </p>
  5309. <p>
  5310. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  5311. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>jwt</code> or <code>cert</code>
  5312. can be specified.</p>
  5313. </p>
  5314. <table>
  5315. <thead>
  5316. <tr>
  5317. <th>Field</th>
  5318. <th>Description</th>
  5319. </tr>
  5320. </thead>
  5321. <tbody>
  5322. <tr>
  5323. <td>
  5324. <code>tokenSecretRef</code></br>
  5325. <em>
  5326. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5327. </em>
  5328. </td>
  5329. <td>
  5330. <em>(Optional)</em>
  5331. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  5332. </td>
  5333. </tr>
  5334. <tr>
  5335. <td>
  5336. <code>appRole</code></br>
  5337. <em>
  5338. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  5339. VaultAppRole
  5340. </a>
  5341. </em>
  5342. </td>
  5343. <td>
  5344. <em>(Optional)</em>
  5345. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  5346. with the role and secret stored in a Kubernetes Secret resource.</p>
  5347. </td>
  5348. </tr>
  5349. <tr>
  5350. <td>
  5351. <code>kubernetes</code></br>
  5352. <em>
  5353. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  5354. VaultKubernetesAuth
  5355. </a>
  5356. </em>
  5357. </td>
  5358. <td>
  5359. <em>(Optional)</em>
  5360. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  5361. token stored in the named Secret resource to the Vault server.</p>
  5362. </td>
  5363. </tr>
  5364. <tr>
  5365. <td>
  5366. <code>ldap</code></br>
  5367. <em>
  5368. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  5369. VaultLdapAuth
  5370. </a>
  5371. </em>
  5372. </td>
  5373. <td>
  5374. <em>(Optional)</em>
  5375. <p>Ldap authenticates with Vault by passing username/password pair using
  5376. the LDAP authentication method</p>
  5377. </td>
  5378. </tr>
  5379. <tr>
  5380. <td>
  5381. <code>jwt</code></br>
  5382. <em>
  5383. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  5384. VaultJwtAuth
  5385. </a>
  5386. </em>
  5387. </td>
  5388. <td>
  5389. <em>(Optional)</em>
  5390. <p>Jwt authenticates with Vault by passing role and JWT token using the
  5391. JWT/OIDC authentication method</p>
  5392. </td>
  5393. </tr>
  5394. <tr>
  5395. <td>
  5396. <code>cert</code></br>
  5397. <em>
  5398. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  5399. VaultCertAuth
  5400. </a>
  5401. </em>
  5402. </td>
  5403. <td>
  5404. <em>(Optional)</em>
  5405. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  5406. Cert authentication method</p>
  5407. </td>
  5408. </tr>
  5409. </tbody>
  5410. </table>
  5411. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  5412. </h3>
  5413. <p>
  5414. (<em>Appears on:</em>
  5415. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5416. </p>
  5417. <p>
  5418. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5419. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  5420. </p>
  5421. <table>
  5422. <thead>
  5423. <tr>
  5424. <th>Field</th>
  5425. <th>Description</th>
  5426. </tr>
  5427. </thead>
  5428. <tbody>
  5429. <tr>
  5430. <td>
  5431. <code>clientCert</code></br>
  5432. <em>
  5433. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5434. </em>
  5435. </td>
  5436. <td>
  5437. <em>(Optional)</em>
  5438. <p>ClientCert is a certificate to authenticate using the Cert Vault
  5439. authentication method</p>
  5440. </td>
  5441. </tr>
  5442. <tr>
  5443. <td>
  5444. <code>secretRef</code></br>
  5445. <em>
  5446. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5447. </em>
  5448. </td>
  5449. <td>
  5450. <p>SecretRef to a key in a Secret resource containing client private key to
  5451. authenticate with Vault using the Cert authentication method</p>
  5452. </td>
  5453. </tr>
  5454. </tbody>
  5455. </table>
  5456. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  5457. </h3>
  5458. <p>
  5459. (<em>Appears on:</em>
  5460. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5461. </p>
  5462. <p>
  5463. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5464. method, with the role name and a token stored in a Kubernetes Secret resource or
  5465. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  5466. </p>
  5467. <table>
  5468. <thead>
  5469. <tr>
  5470. <th>Field</th>
  5471. <th>Description</th>
  5472. </tr>
  5473. </thead>
  5474. <tbody>
  5475. <tr>
  5476. <td>
  5477. <code>path</code></br>
  5478. <em>
  5479. string
  5480. </em>
  5481. </td>
  5482. <td>
  5483. <p>Path where the JWT authentication backend is mounted
  5484. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  5485. </td>
  5486. </tr>
  5487. <tr>
  5488. <td>
  5489. <code>role</code></br>
  5490. <em>
  5491. string
  5492. </em>
  5493. </td>
  5494. <td>
  5495. <em>(Optional)</em>
  5496. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  5497. authentication method</p>
  5498. </td>
  5499. </tr>
  5500. <tr>
  5501. <td>
  5502. <code>secretRef</code></br>
  5503. <em>
  5504. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5505. </em>
  5506. </td>
  5507. <td>
  5508. <em>(Optional)</em>
  5509. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  5510. authenticate with Vault using the JWT/OIDC authentication method.</p>
  5511. </td>
  5512. </tr>
  5513. <tr>
  5514. <td>
  5515. <code>kubernetesServiceAccountToken</code></br>
  5516. <em>
  5517. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  5518. VaultKubernetesServiceAccountTokenAuth
  5519. </a>
  5520. </em>
  5521. </td>
  5522. <td>
  5523. <em>(Optional)</em>
  5524. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  5525. a token for with the <code>TokenRequest</code> API.</p>
  5526. </td>
  5527. </tr>
  5528. </tbody>
  5529. </table>
  5530. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  5531. (<code>string</code> alias)</p></h3>
  5532. <p>
  5533. (<em>Appears on:</em>
  5534. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5535. </p>
  5536. <p>
  5537. </p>
  5538. <table>
  5539. <thead>
  5540. <tr>
  5541. <th>Value</th>
  5542. <th>Description</th>
  5543. </tr>
  5544. </thead>
  5545. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5546. <td></td>
  5547. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5548. <td></td>
  5549. </tr></tbody>
  5550. </table>
  5551. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  5552. </h3>
  5553. <p>
  5554. (<em>Appears on:</em>
  5555. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5556. </p>
  5557. <p>
  5558. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  5559. a Secret.</p>
  5560. </p>
  5561. <table>
  5562. <thead>
  5563. <tr>
  5564. <th>Field</th>
  5565. <th>Description</th>
  5566. </tr>
  5567. </thead>
  5568. <tbody>
  5569. <tr>
  5570. <td>
  5571. <code>mountPath</code></br>
  5572. <em>
  5573. string
  5574. </em>
  5575. </td>
  5576. <td>
  5577. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  5578. &ldquo;kubernetes&rdquo;</p>
  5579. </td>
  5580. </tr>
  5581. <tr>
  5582. <td>
  5583. <code>serviceAccountRef</code></br>
  5584. <em>
  5585. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  5586. </em>
  5587. </td>
  5588. <td>
  5589. <em>(Optional)</em>
  5590. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  5591. If the service account is specified, the service account secret token JWT will be used
  5592. for authenticating with Vault. If the service account selector is not supplied,
  5593. the secretRef will be used instead.</p>
  5594. </td>
  5595. </tr>
  5596. <tr>
  5597. <td>
  5598. <code>secretRef</code></br>
  5599. <em>
  5600. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5601. </em>
  5602. </td>
  5603. <td>
  5604. <em>(Optional)</em>
  5605. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  5606. for authenticating with Vault. If a name is specified without a key,
  5607. <code>token</code> is the default. If one is not specified, the one bound to
  5608. the controller will be used.</p>
  5609. </td>
  5610. </tr>
  5611. <tr>
  5612. <td>
  5613. <code>role</code></br>
  5614. <em>
  5615. string
  5616. </em>
  5617. </td>
  5618. <td>
  5619. <p>A required field containing the Vault Role to assume. A Role binds a
  5620. Kubernetes ServiceAccount with a set of Vault policies.</p>
  5621. </td>
  5622. </tr>
  5623. </tbody>
  5624. </table>
  5625. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  5626. </h3>
  5627. <p>
  5628. (<em>Appears on:</em>
  5629. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  5630. </p>
  5631. <p>
  5632. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  5633. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  5634. </p>
  5635. <table>
  5636. <thead>
  5637. <tr>
  5638. <th>Field</th>
  5639. <th>Description</th>
  5640. </tr>
  5641. </thead>
  5642. <tbody>
  5643. <tr>
  5644. <td>
  5645. <code>serviceAccountRef</code></br>
  5646. <em>
  5647. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  5648. </em>
  5649. </td>
  5650. <td>
  5651. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  5652. </td>
  5653. </tr>
  5654. <tr>
  5655. <td>
  5656. <code>audiences</code></br>
  5657. <em>
  5658. []string
  5659. </em>
  5660. </td>
  5661. <td>
  5662. <em>(Optional)</em>
  5663. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  5664. account token for the service account referenced by <code>serviceAccountRef</code>.
  5665. Defaults to a single audience <code>vault</code> it not specified.
  5666. Deprecated: use serviceAccountRef.Audiences instead</p>
  5667. </td>
  5668. </tr>
  5669. <tr>
  5670. <td>
  5671. <code>expirationSeconds</code></br>
  5672. <em>
  5673. int64
  5674. </em>
  5675. </td>
  5676. <td>
  5677. <em>(Optional)</em>
  5678. <p>Optional expiration time in seconds that will be used to request a temporary
  5679. Kubernetes service account token for the service account referenced by
  5680. <code>serviceAccountRef</code>.
  5681. Deprecated: this will be removed in the future.
  5682. Defaults to 10 minutes.</p>
  5683. </td>
  5684. </tr>
  5685. </tbody>
  5686. </table>
  5687. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  5688. </h3>
  5689. <p>
  5690. (<em>Appears on:</em>
  5691. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5692. </p>
  5693. <p>
  5694. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  5695. with the username and password stored in a Kubernetes Secret resource.</p>
  5696. </p>
  5697. <table>
  5698. <thead>
  5699. <tr>
  5700. <th>Field</th>
  5701. <th>Description</th>
  5702. </tr>
  5703. </thead>
  5704. <tbody>
  5705. <tr>
  5706. <td>
  5707. <code>path</code></br>
  5708. <em>
  5709. string
  5710. </em>
  5711. </td>
  5712. <td>
  5713. <p>Path where the LDAP authentication backend is mounted
  5714. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  5715. </td>
  5716. </tr>
  5717. <tr>
  5718. <td>
  5719. <code>username</code></br>
  5720. <em>
  5721. string
  5722. </em>
  5723. </td>
  5724. <td>
  5725. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  5726. authentication method</p>
  5727. </td>
  5728. </tr>
  5729. <tr>
  5730. <td>
  5731. <code>secretRef</code></br>
  5732. <em>
  5733. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5734. </em>
  5735. </td>
  5736. <td>
  5737. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  5738. user used to authenticate with Vault using the LDAP authentication
  5739. method</p>
  5740. </td>
  5741. </tr>
  5742. </tbody>
  5743. </table>
  5744. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  5745. </h3>
  5746. <p>
  5747. (<em>Appears on:</em>
  5748. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5749. </p>
  5750. <p>
  5751. <p>Configures an store to sync secrets using a HashiCorp Vault
  5752. KV backend.</p>
  5753. </p>
  5754. <table>
  5755. <thead>
  5756. <tr>
  5757. <th>Field</th>
  5758. <th>Description</th>
  5759. </tr>
  5760. </thead>
  5761. <tbody>
  5762. <tr>
  5763. <td>
  5764. <code>auth</code></br>
  5765. <em>
  5766. <a href="#external-secrets.io/v1beta1.VaultAuth">
  5767. VaultAuth
  5768. </a>
  5769. </em>
  5770. </td>
  5771. <td>
  5772. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  5773. </td>
  5774. </tr>
  5775. <tr>
  5776. <td>
  5777. <code>server</code></br>
  5778. <em>
  5779. string
  5780. </em>
  5781. </td>
  5782. <td>
  5783. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  5784. </td>
  5785. </tr>
  5786. <tr>
  5787. <td>
  5788. <code>path</code></br>
  5789. <em>
  5790. string
  5791. </em>
  5792. </td>
  5793. <td>
  5794. <em>(Optional)</em>
  5795. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  5796. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  5797. for fetching secrets from Vault is optional and will be appended
  5798. if not present in specified path.</p>
  5799. </td>
  5800. </tr>
  5801. <tr>
  5802. <td>
  5803. <code>version</code></br>
  5804. <em>
  5805. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  5806. VaultKVStoreVersion
  5807. </a>
  5808. </em>
  5809. </td>
  5810. <td>
  5811. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  5812. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  5813. </td>
  5814. </tr>
  5815. <tr>
  5816. <td>
  5817. <code>namespace</code></br>
  5818. <em>
  5819. string
  5820. </em>
  5821. </td>
  5822. <td>
  5823. <em>(Optional)</em>
  5824. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  5825. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  5826. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  5827. </td>
  5828. </tr>
  5829. <tr>
  5830. <td>
  5831. <code>caBundle</code></br>
  5832. <em>
  5833. []byte
  5834. </em>
  5835. </td>
  5836. <td>
  5837. <em>(Optional)</em>
  5838. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  5839. if the Server URL is using HTTPS protocol. This parameter is ignored for
  5840. plain HTTP protocol connection. If not set the system root certificates
  5841. are used to validate the TLS connection.</p>
  5842. </td>
  5843. </tr>
  5844. <tr>
  5845. <td>
  5846. <code>caProvider</code></br>
  5847. <em>
  5848. <a href="#external-secrets.io/v1beta1.CAProvider">
  5849. CAProvider
  5850. </a>
  5851. </em>
  5852. </td>
  5853. <td>
  5854. <em>(Optional)</em>
  5855. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  5856. </td>
  5857. </tr>
  5858. <tr>
  5859. <td>
  5860. <code>readYourWrites</code></br>
  5861. <em>
  5862. bool
  5863. </em>
  5864. </td>
  5865. <td>
  5866. <em>(Optional)</em>
  5867. <p>ReadYourWrites ensures isolated read-after-write semantics by
  5868. providing discovered cluster replication states in each request.
  5869. More information about eventual consistency in Vault can be found here
  5870. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  5871. </td>
  5872. </tr>
  5873. <tr>
  5874. <td>
  5875. <code>forwardInconsistent</code></br>
  5876. <em>
  5877. bool
  5878. </em>
  5879. </td>
  5880. <td>
  5881. <em>(Optional)</em>
  5882. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  5883. leader instead of simply retrying within a loop. This can increase performance if
  5884. the option is enabled serverside.
  5885. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  5886. </td>
  5887. </tr>
  5888. </tbody>
  5889. </table>
  5890. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  5891. </h3>
  5892. <p>
  5893. (<em>Appears on:</em>
  5894. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  5895. </p>
  5896. <p>
  5897. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  5898. </p>
  5899. <table>
  5900. <thead>
  5901. <tr>
  5902. <th>Field</th>
  5903. <th>Description</th>
  5904. </tr>
  5905. </thead>
  5906. <tbody>
  5907. <tr>
  5908. <td>
  5909. <code>type</code></br>
  5910. <em>
  5911. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  5912. WebhookCAProviderType
  5913. </a>
  5914. </em>
  5915. </td>
  5916. <td>
  5917. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  5918. </td>
  5919. </tr>
  5920. <tr>
  5921. <td>
  5922. <code>name</code></br>
  5923. <em>
  5924. string
  5925. </em>
  5926. </td>
  5927. <td>
  5928. <p>The name of the object located at the provider type.</p>
  5929. </td>
  5930. </tr>
  5931. <tr>
  5932. <td>
  5933. <code>key</code></br>
  5934. <em>
  5935. string
  5936. </em>
  5937. </td>
  5938. <td>
  5939. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  5940. </td>
  5941. </tr>
  5942. <tr>
  5943. <td>
  5944. <code>namespace</code></br>
  5945. <em>
  5946. string
  5947. </em>
  5948. </td>
  5949. <td>
  5950. <em>(Optional)</em>
  5951. <p>The namespace the Provider type is in.</p>
  5952. </td>
  5953. </tr>
  5954. </tbody>
  5955. </table>
  5956. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  5957. (<code>string</code> alias)</p></h3>
  5958. <p>
  5959. (<em>Appears on:</em>
  5960. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  5961. </p>
  5962. <p>
  5963. </p>
  5964. <table>
  5965. <thead>
  5966. <tr>
  5967. <th>Value</th>
  5968. <th>Description</th>
  5969. </tr>
  5970. </thead>
  5971. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  5972. <td></td>
  5973. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  5974. <td></td>
  5975. </tr></tbody>
  5976. </table>
  5977. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  5978. </h3>
  5979. <p>
  5980. (<em>Appears on:</em>
  5981. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5982. </p>
  5983. <p>
  5984. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  5985. </p>
  5986. <table>
  5987. <thead>
  5988. <tr>
  5989. <th>Field</th>
  5990. <th>Description</th>
  5991. </tr>
  5992. </thead>
  5993. <tbody>
  5994. <tr>
  5995. <td>
  5996. <code>method</code></br>
  5997. <em>
  5998. string
  5999. </em>
  6000. </td>
  6001. <td>
  6002. <p>Webhook Method</p>
  6003. </td>
  6004. </tr>
  6005. <tr>
  6006. <td>
  6007. <code>url</code></br>
  6008. <em>
  6009. string
  6010. </em>
  6011. </td>
  6012. <td>
  6013. <p>Webhook url to call</p>
  6014. </td>
  6015. </tr>
  6016. <tr>
  6017. <td>
  6018. <code>headers</code></br>
  6019. <em>
  6020. map[string]string
  6021. </em>
  6022. </td>
  6023. <td>
  6024. <em>(Optional)</em>
  6025. <p>Headers</p>
  6026. </td>
  6027. </tr>
  6028. <tr>
  6029. <td>
  6030. <code>body</code></br>
  6031. <em>
  6032. string
  6033. </em>
  6034. </td>
  6035. <td>
  6036. <em>(Optional)</em>
  6037. <p>Body</p>
  6038. </td>
  6039. </tr>
  6040. <tr>
  6041. <td>
  6042. <code>timeout</code></br>
  6043. <em>
  6044. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  6045. Kubernetes meta/v1.Duration
  6046. </a>
  6047. </em>
  6048. </td>
  6049. <td>
  6050. <em>(Optional)</em>
  6051. <p>Timeout</p>
  6052. </td>
  6053. </tr>
  6054. <tr>
  6055. <td>
  6056. <code>result</code></br>
  6057. <em>
  6058. <a href="#external-secrets.io/v1beta1.WebhookResult">
  6059. WebhookResult
  6060. </a>
  6061. </em>
  6062. </td>
  6063. <td>
  6064. <p>Result formatting</p>
  6065. </td>
  6066. </tr>
  6067. <tr>
  6068. <td>
  6069. <code>secrets</code></br>
  6070. <em>
  6071. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  6072. []WebhookSecret
  6073. </a>
  6074. </em>
  6075. </td>
  6076. <td>
  6077. <em>(Optional)</em>
  6078. <p>Secrets to fill in templates
  6079. These secrets will be passed to the templating function as key value pairs under the given name</p>
  6080. </td>
  6081. </tr>
  6082. <tr>
  6083. <td>
  6084. <code>caBundle</code></br>
  6085. <em>
  6086. []byte
  6087. </em>
  6088. </td>
  6089. <td>
  6090. <em>(Optional)</em>
  6091. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  6092. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6093. plain HTTP protocol connection. If not set the system root certificates
  6094. are used to validate the TLS connection.</p>
  6095. </td>
  6096. </tr>
  6097. <tr>
  6098. <td>
  6099. <code>caProvider</code></br>
  6100. <em>
  6101. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  6102. WebhookCAProvider
  6103. </a>
  6104. </em>
  6105. </td>
  6106. <td>
  6107. <em>(Optional)</em>
  6108. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  6109. </td>
  6110. </tr>
  6111. </tbody>
  6112. </table>
  6113. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  6114. </h3>
  6115. <p>
  6116. (<em>Appears on:</em>
  6117. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6118. </p>
  6119. <p>
  6120. </p>
  6121. <table>
  6122. <thead>
  6123. <tr>
  6124. <th>Field</th>
  6125. <th>Description</th>
  6126. </tr>
  6127. </thead>
  6128. <tbody>
  6129. <tr>
  6130. <td>
  6131. <code>jsonPath</code></br>
  6132. <em>
  6133. string
  6134. </em>
  6135. </td>
  6136. <td>
  6137. <em>(Optional)</em>
  6138. <p>Json path of return value</p>
  6139. </td>
  6140. </tr>
  6141. </tbody>
  6142. </table>
  6143. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  6144. </h3>
  6145. <p>
  6146. (<em>Appears on:</em>
  6147. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6148. </p>
  6149. <p>
  6150. </p>
  6151. <table>
  6152. <thead>
  6153. <tr>
  6154. <th>Field</th>
  6155. <th>Description</th>
  6156. </tr>
  6157. </thead>
  6158. <tbody>
  6159. <tr>
  6160. <td>
  6161. <code>name</code></br>
  6162. <em>
  6163. string
  6164. </em>
  6165. </td>
  6166. <td>
  6167. <p>Name of this secret in templates</p>
  6168. </td>
  6169. </tr>
  6170. <tr>
  6171. <td>
  6172. <code>secretRef</code></br>
  6173. <em>
  6174. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6175. </em>
  6176. </td>
  6177. <td>
  6178. <p>Secret ref to fill in credentials</p>
  6179. </td>
  6180. </tr>
  6181. </tbody>
  6182. </table>
  6183. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  6184. </h3>
  6185. <p>
  6186. (<em>Appears on:</em>
  6187. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6188. </p>
  6189. <p>
  6190. </p>
  6191. <table>
  6192. <thead>
  6193. <tr>
  6194. <th>Field</th>
  6195. <th>Description</th>
  6196. </tr>
  6197. </thead>
  6198. <tbody>
  6199. <tr>
  6200. <td>
  6201. <code>authorizedKeySecretRef</code></br>
  6202. <em>
  6203. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6204. </em>
  6205. </td>
  6206. <td>
  6207. <em>(Optional)</em>
  6208. <p>The authorized key used for authentication</p>
  6209. </td>
  6210. </tr>
  6211. </tbody>
  6212. </table>
  6213. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  6214. </h3>
  6215. <p>
  6216. (<em>Appears on:</em>
  6217. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6218. </p>
  6219. <p>
  6220. </p>
  6221. <table>
  6222. <thead>
  6223. <tr>
  6224. <th>Field</th>
  6225. <th>Description</th>
  6226. </tr>
  6227. </thead>
  6228. <tbody>
  6229. <tr>
  6230. <td>
  6231. <code>certSecretRef</code></br>
  6232. <em>
  6233. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6234. </em>
  6235. </td>
  6236. <td>
  6237. </td>
  6238. </tr>
  6239. </tbody>
  6240. </table>
  6241. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  6242. </h3>
  6243. <p>
  6244. (<em>Appears on:</em>
  6245. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6246. </p>
  6247. <p>
  6248. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  6249. </p>
  6250. <table>
  6251. <thead>
  6252. <tr>
  6253. <th>Field</th>
  6254. <th>Description</th>
  6255. </tr>
  6256. </thead>
  6257. <tbody>
  6258. <tr>
  6259. <td>
  6260. <code>apiEndpoint</code></br>
  6261. <em>
  6262. string
  6263. </em>
  6264. </td>
  6265. <td>
  6266. <em>(Optional)</em>
  6267. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6268. </td>
  6269. </tr>
  6270. <tr>
  6271. <td>
  6272. <code>auth</code></br>
  6273. <em>
  6274. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  6275. YandexCertificateManagerAuth
  6276. </a>
  6277. </em>
  6278. </td>
  6279. <td>
  6280. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  6281. </td>
  6282. </tr>
  6283. <tr>
  6284. <td>
  6285. <code>caProvider</code></br>
  6286. <em>
  6287. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  6288. YandexCertificateManagerCAProvider
  6289. </a>
  6290. </em>
  6291. </td>
  6292. <td>
  6293. <em>(Optional)</em>
  6294. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6295. </td>
  6296. </tr>
  6297. </tbody>
  6298. </table>
  6299. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  6300. </h3>
  6301. <p>
  6302. (<em>Appears on:</em>
  6303. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6304. </p>
  6305. <p>
  6306. </p>
  6307. <table>
  6308. <thead>
  6309. <tr>
  6310. <th>Field</th>
  6311. <th>Description</th>
  6312. </tr>
  6313. </thead>
  6314. <tbody>
  6315. <tr>
  6316. <td>
  6317. <code>authorizedKeySecretRef</code></br>
  6318. <em>
  6319. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6320. </em>
  6321. </td>
  6322. <td>
  6323. <em>(Optional)</em>
  6324. <p>The authorized key used for authentication</p>
  6325. </td>
  6326. </tr>
  6327. </tbody>
  6328. </table>
  6329. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  6330. </h3>
  6331. <p>
  6332. (<em>Appears on:</em>
  6333. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6334. </p>
  6335. <p>
  6336. </p>
  6337. <table>
  6338. <thead>
  6339. <tr>
  6340. <th>Field</th>
  6341. <th>Description</th>
  6342. </tr>
  6343. </thead>
  6344. <tbody>
  6345. <tr>
  6346. <td>
  6347. <code>certSecretRef</code></br>
  6348. <em>
  6349. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6350. </em>
  6351. </td>
  6352. <td>
  6353. </td>
  6354. </tr>
  6355. </tbody>
  6356. </table>
  6357. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  6358. </h3>
  6359. <p>
  6360. (<em>Appears on:</em>
  6361. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6362. </p>
  6363. <p>
  6364. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  6365. </p>
  6366. <table>
  6367. <thead>
  6368. <tr>
  6369. <th>Field</th>
  6370. <th>Description</th>
  6371. </tr>
  6372. </thead>
  6373. <tbody>
  6374. <tr>
  6375. <td>
  6376. <code>apiEndpoint</code></br>
  6377. <em>
  6378. string
  6379. </em>
  6380. </td>
  6381. <td>
  6382. <em>(Optional)</em>
  6383. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6384. </td>
  6385. </tr>
  6386. <tr>
  6387. <td>
  6388. <code>auth</code></br>
  6389. <em>
  6390. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  6391. YandexLockboxAuth
  6392. </a>
  6393. </em>
  6394. </td>
  6395. <td>
  6396. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  6397. </td>
  6398. </tr>
  6399. <tr>
  6400. <td>
  6401. <code>caProvider</code></br>
  6402. <em>
  6403. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  6404. YandexLockboxCAProvider
  6405. </a>
  6406. </em>
  6407. </td>
  6408. <td>
  6409. <em>(Optional)</em>
  6410. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6411. </td>
  6412. </tr>
  6413. </tbody>
  6414. </table>
  6415. <hr/>
  6416. <p><em>
  6417. Generated with <code>gen-crd-api-reference-docs</code>.
  6418. </em></p>
  6419. </article>
  6420. </div>
  6421. </div>
  6422. </main>
  6423. <footer class="md-footer">
  6424. <nav class="md-footer__inner md-grid" aria-label="Footer">
  6425. <a href="../generator/fake/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Fake" rel="prev">
  6426. <div class="md-footer__button md-icon">
  6427. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg>
  6428. </div>
  6429. <div class="md-footer__title">
  6430. <div class="md-ellipsis">
  6431. <span class="md-footer__direction">
  6432. Previous
  6433. </span>
  6434. Fake
  6435. </div>
  6436. </div>
  6437. </a>
  6438. <a href="../controller-options/" class="md-footer__link md-footer__link--next" aria-label="Next: Controller Options" rel="next">
  6439. <div class="md-footer__title">
  6440. <div class="md-ellipsis">
  6441. <span class="md-footer__direction">
  6442. Next
  6443. </span>
  6444. Controller Options
  6445. </div>
  6446. </div>
  6447. <div class="md-footer__button md-icon">
  6448. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z"/></svg>
  6449. </div>
  6450. </a>
  6451. </nav>
  6452. <div class="md-footer-meta md-typeset">
  6453. <div class="md-footer-meta__inner md-grid">
  6454. <div class="md-copyright">
  6455. <div class="md-copyright__highlight">
  6456. &copy; 2022 The external-secrets Authors.<br/>
  6457. &copy; 2022 The Linux Foundation. All rights reserved.<br/><br/>
  6458. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  6459. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  6460. </div>
  6461. Made with
  6462. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  6463. Material for MkDocs
  6464. </a>
  6465. </div>
  6466. </div>
  6467. </div>
  6468. </footer>
  6469. </div>
  6470. <div class="md-dialog" data-md-component="dialog">
  6471. <div class="md-dialog__inner md-typeset"></div>
  6472. </div>
  6473. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "translations": {"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.version.title": "Select version"}, "search": "../../assets/javascripts/workers/search.092fa1f6.min.js", "version": {"provider": "mike"}}</script>
  6474. <script src="../../assets/javascripts/bundle.e3b2bf44.min.js"></script>
  6475. </body>
  6476. </html>